-
Hi,
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Please note that Your Mavo template does not seem to correspond to the data you have. The JSON this Mavo app would produce is {
"tDay": "#"
} If your data comes from elsewhere, you can do |
Beta Was this translation helpful? Give feedback.
Please note that
set()
will not work in an expression, it's an action function and will exclusively work in Actions.Your Mavo template does not seem to correspond to the data you have. The JSON this Mavo app would produce is
If your data comes from elsewhere, you can do
[get(dataStorage, $today)]
to get the day name, but do note Mavo cannot create such an object with variable property names (except perhaps with a bunch of workarounds).