2 toggles set to deactivate each other on toggling on are also activating each other on toggling off

I thought it was contradictory what you’re trying to do (like why are you using 2 conditions to do 1 thing), then I realized that it actually makes sense. When you toggle off IsFinancial or IsNotFinancial, you’re resetting the filter, in a sense (in the scenario where there are only 2 filters).

So 3 scenarios:

  1. Show records that industry is Financial
  2. Show records that industry is NOT Financial
  3. Show all records (when it comes to industry), aka don’t filter or industry
It almost seems buggy to me. Reason for the “almost”, is that it’s possible that when you toggle off the filter, it still runs both actions in the node (code block below), but in the opposite direction, which can make sense why it’s activating the other condition.
<filter type=“toggle” ...>  //when toggling off, this condition below deactivates  //when toggling off, this condition below activates