Is there anyway to set dashboard language
It should say (Monday)
Thanks
You can use the third parameter to specify the locale per the documentation:
formatDate(date, format, locale)
Theformat
string can use the reference format values. Thelocale
string should be a valid locale key.
formatDate(now(), "dddd HH:mm", "en")
This should default to en
, so I’ll take a look at why this is not consistently using that locale by default.
I’ve pushed a hotfix which should ensure the default locale is always en
with a formatDate()
expression. Can you give it a try again?
Yep, Working fine now, thanks