1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-03 16:39:54 +00:00

Resolve "Disable repeat formula function for now"

This commit is contained in:
Nigel Gott 2021-11-24 13:45:20 +00:00 committed by Bram Wiepjes
parent 51c4b568e7
commit a66653b9f1
26 changed files with 65 additions and 77 deletions
web-frontend/modules/database

View file

@ -118,7 +118,6 @@ import {
BaserowMonth,
BaserowLeast,
BaserowGreatest,
BaserowRepeat,
BaserowRegexReplace,
BaserowTrim,
BaserowRight,
@ -283,7 +282,6 @@ export default (context) => {
app.$registry.register('formula_function', new BaserowRight(context))
app.$registry.register('formula_function', new BaserowTrim(context))
app.$registry.register('formula_function', new BaserowRegexReplace(context))
app.$registry.register('formula_function', new BaserowRepeat(context))
app.$registry.register('formula_function', new BaserowGreatest(context))
app.$registry.register('formula_function', new BaserowLeast(context))
app.$registry.register('formula_function', new BaserowMonth(context))