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

Resolve "Button formula function should show as an actual button"

This commit is contained in:
Davide Silvestri 2024-01-03 08:58:31 +00:00
parent f9bfc731ce
commit 0c563352c8
26 changed files with 402 additions and 118 deletions
web-frontend/modules/database

View file

@ -214,6 +214,7 @@ import {
import {
BaserowFormulaArrayType,
BaserowFormulaBooleanType,
BaserowFormulaButtonType,
BaserowFormulaCharType,
BaserowFormulaLinkType,
BaserowFormulaDateIntervalType,
@ -624,6 +625,7 @@ export default (context) => {
'formula_type',
new BaserowFormulaMultipleSelectType(context)
)
app.$registry.register('formula_type', new BaserowFormulaButtonType(context))
app.$registry.register('formula_type', new BaserowFormulaLinkType(context))
app.$registry.register('formula_type', new BaserowFormulaFileType(context))