1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-14 05:02:20 +00:00

Resolve "Formula's totext function doesn't take into account timezones for date fields"

This commit is contained in:
Davide Silvestri 2023-05-15 13:56:44 +00:00
parent 7493187bff
commit 1d5c830729
9 changed files with 128 additions and 7 deletions
web-frontend/modules/database

View file

@ -104,6 +104,7 @@ import {
BaserowDateDiff,
BaserowDateInterval,
BaserowDatetimeFormat,
BaserowDatetimeFormatTz,
BaserowDay,
BaserowDivide,
BaserowEqual,
@ -436,6 +437,10 @@ export default (context) => {
app.$registry.register('formula_function', new BaserowOr(context))
// Date functions
app.$registry.register('formula_function', new BaserowDatetimeFormat(context))
app.$registry.register(
'formula_function',
new BaserowDatetimeFormatTz(context)
)
app.$registry.register('formula_function', new BaserowDay(context))
app.$registry.register('formula_function', new BaserowNow(context))
app.$registry.register('formula_function', new BaserowToday(context))