Try this:
- label: '"WiFi Network Name"'
parameter: VirtualParameters.WiFi-SSID
filter: VirtualParameters.Hardware-Type = "MRR"
type: "'container'"
components:
- type: "'parameter'"
This replaces the default component (i.e. parameter
) that is used to render each individual value. It replaces it with a container
component with which you can use the filter
property. The parameter-list
component will then skip any item that renders nothing.
I should’ve mentioned this solution in my previous answer but oddly enough it didn’t occur to me until you asked a direct how question