BUG: next days can't be displayed

in watchmaker studio it shows the next days correctly (see screenshot) but on watch it shows 'false’ instead of ‘Mo’, ‘Tu’, ‘We’, ….

text content: ({‘Mo’,‘Tu’,‘We’,‘Th’,‘Fr’,‘Sa’,‘Su’})[({ddw0}%7)+1]

result on watch should be like that in studio.

anyone an idea how to fix that?

i tried also => ({‘Mo’,‘Tu’,‘We’,‘Th’,‘Fr’,‘Sa’,‘Su’})[({ddw0} - math.floor({ddw0} / 7) * 7)+2]

but it shows on watch ‘false’

Could it be that WatchMaker on Samsung Gear does NOT reliably support table indexing with computed expressions, even if the math is correct?

i found a solution that works on both =>

({ddw0}==1 and ‘Tu’) or ({ddw0}==2 and ‘We’) or ({ddw0}==3 and ‘Th’) or ({ddw0}==4 and ‘Fr’) or ({ddw0}==5 and ‘Sa’) or ({ddw0}==6 and ‘Su’) or ({ddw0}==7 and ‘Mo’) or ‘’

ao just fix it for the other days if you need it. cheers guys !