I want to combine these two <condition> into one.
<input>
.....
<change>
<condition value = "BT">
<unset token="show_wifi_connect_type"></unset>
</condition>
<condition value="UART">
<unset token="show_wifi_connect_type"></unset>
</condition>
</change>
...
</input>
I tried combine these two status using "match", but it doesn't work.
How could I solve this problem?
I believe this should do it.
<input>
.....
<change>
<condition match="'value'=="BT" OR 'value'=="UART"">
<unset token="show_wifi_connect_type"></unset>
</condition>
</change>
...
</input>
You can see on the screenshots it worked as expected when testing locally.
@dtburrows3 Thank you for your support!
It work!
I believe this should do it.
<input>
.....
<change>
<condition match="'value'=="BT" OR 'value'=="UART"">
<unset token="show_wifi_connect_type"></unset>
</condition>
</change>
...
</input>
You can see on the screenshots it worked as expected when testing locally.