Hello, I have a small issue within a workflow I’m working on, that contains an true/false split : I set up a condition but it’s not working, and I struggle to understand why.
Here, the condition is asking if “Fourni - modify categorie - currentSelection” (multiselect dropdown input) is empty or not ? Maybe that’s not how to write it, but anyway, the condition returns “true” and the workflow is taking the “false” way.
Hm, what I’d do is log the value of the select before the split. You can use the log action, or the Custom JavaScript action and console.log() it. This should tell you whether it’s empty for real
What do you think ? Should I maybe separate actions in different workflows (“on change” for each input for example), whereas setting everything in one “on submit” trigger ?
Ok i’ve found the problem : I was using a variable twice for content observation and update. It’s maybe not very clear, but it’s finally working.
Thanks @Broberto for your reply, i’ve learned something about logs