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:
parent
7493187bff
commit
1d5c830729
9 changed files with 128 additions and 7 deletions
web-frontend/modules/database
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue