Bug with and or in text field

Alex Curran this “{dm} < 45 and 02 or 58” doesn’t work in OS6 in the text box. There are a lot more and or statements like this that don’t work in the text field.

Try it with JavaScript syntax

Instead of and / or use ? :

Could you give an example with what I gave you?

{dm} < 45 && 02 || 58

Returns false or true on the watch and in the app it just shows the calculation without doing it.

({dm} < 45) ? “02” : “58”

Might work but it doesn’t display the 0 in 02. And in the app it just displays the calculation and not the answer.