Set Components as hidden based on condition

Hello!

I want to hide a navigation if the options board or list are not selected.
So if any of the other three options are selected, the navigation should be hidden.

Which condition can I use to do that?


Thanks in advance!

Hi @Diamond

You can try something like: {{ ['View 2', 'View 3'].indexOf(self.value) >= 0 }}

Used the default Navigation values, adjust as per your navigation value.

Hope this help

Thank you so much, it worked!