Serdar Tumgoren
06/27/2021, 1:02 AMtrue
-> false
or vice versa, the UI appears to be converting them under the hood to strings ("true"
or "false"
, as the case may be). This causes conditional logic that checks for “truthiness” in my flow to behave incorrectly (i.e. conditionals expecting a False
always evaluate as True
since non-empty Python strings always evaluate as True
). I verified this by toggling the values in Inputs UI and switching to the JSON configuration view of the data. I can get the Flow to run correctly by switching to the JSON configuration and correcting the issue, but figured that perhaps I’m missing something basic about the UI. Anyone have advice?false
-> true
in the UI, the value is converted to a string as shown in the JSON view belowKevin Kho
Serdar Tumgoren
06/27/2021, 10:07 PMtrue
and false
values as proper booleans and my flow works correctly (see image below). So perhaps this is just a quirk related to toggling to JSON configuration mode? Anyhow, sorry to bug you all on the weekend with it. Let me know next week if you have any follow-ups to help reproduce the issuenicholas
Marvin
06/28/2021, 3:15 PMSerdar Tumgoren
06/28/2021, 3:16 PM