1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-07 10:10:56 +00:00

Resolve "isNan/whenNan formulas"

This commit is contained in:
Alexander Haller 2023-02-02 16:11:55 +00:00
parent 935ba12f25
commit c1cfdb235b
7 changed files with 102 additions and 1 deletions
web-frontend/modules/database

View file

@ -155,6 +155,8 @@ import {
BaserowContains,
BaserowFilter,
BaserowTrunc,
BaserowIsNaN,
BaserowWhenNaN,
BaserowEven,
BaserowOdd,
BaserowCeil,
@ -458,6 +460,8 @@ export default (context) => {
app.$registry.register('formula_function', new BaserowSum(context))
app.$registry.register('formula_function', new BaserowFilter(context))
app.$registry.register('formula_function', new BaserowTrunc(context))
app.$registry.register('formula_function', new BaserowIsNaN(context))
app.$registry.register('formula_function', new BaserowWhenNaN(context))
app.$registry.register('formula_function', new BaserowEven(context))
app.$registry.register('formula_function', new BaserowOdd(context))
app.$registry.register('formula_function', new BaserowAbs(context))