diff options
3 files changed, 3 insertions, 6 deletions
diff --git a/gr-blocks/grc/blocks_complex_to_interleaved_char.block.yml b/gr-blocks/grc/blocks_complex_to_interleaved_char.block.yml index e11e0801cd..78a1da6e8b 100644 --- a/gr-blocks/grc/blocks_complex_to_interleaved_char.block.yml +++ b/gr-blocks/grc/blocks_complex_to_interleaved_char.block.yml @@ -10,8 +10,7 @@ parameters: options: ['False', 'True'] option_labels: ['No', 'Yes'] option_attributes: - vlen: ['1', '2'] - hide: ${ 'part' if vlen == 1 else 'none' } + vlen: [1, 2] inputs: - domain: stream diff --git a/gr-blocks/grc/blocks_complex_to_interleaved_short.block.yml b/gr-blocks/grc/blocks_complex_to_interleaved_short.block.yml index 9853f5b117..bd4a588aca 100644 --- a/gr-blocks/grc/blocks_complex_to_interleaved_short.block.yml +++ b/gr-blocks/grc/blocks_complex_to_interleaved_short.block.yml @@ -10,8 +10,7 @@ parameters: options: ['False', 'True'] option_labels: ['No', 'Yes'] option_attributes: - vlen: ['1', '2'] - hide: ${ 'part' if vlen == 1 else 'none' } + vlen: [1, 2] inputs: - domain: stream diff --git a/gr-blocks/grc/blocks_interleaved_char_to_complex.block.yml b/gr-blocks/grc/blocks_interleaved_char_to_complex.block.yml index bf09350843..39f747a981 100644 --- a/gr-blocks/grc/blocks_interleaved_char_to_complex.block.yml +++ b/gr-blocks/grc/blocks_interleaved_char_to_complex.block.yml @@ -10,8 +10,7 @@ parameters: options: ['False', 'True'] option_labels: ['No', 'Yes'] option_attributes: - vlen: ['1', '2'] - hide: ${ 'part' if vlen == 1 else 'none' } + vlen: [1, 2] inputs: - domain: stream |