Can't deactivate filterable sub-condition on subquery

You need to make your primary condition filterable - (So it has a name)  and then add a row to your action sequence that deactivates it too. 

Or maybe you are not requerying your model?  Adjusting the conditions does not automatically change the data (Just like requerying the model does not automatically update conditions - which can be annoying)

When I’m stuck like this I go see what the actual query is by opening the browser console and typing “skuid.$M(‘MYModelName’).soql”   (Where you replace myModelName with the real ID).  THat will give you what is actually being sent to the server.  Debug from there…