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

Resolve "Make URL types hyperlinks in Lookup fields"

This commit is contained in:
Przemyslaw Kukulski 2024-07-15 10:19:55 +00:00
parent 2d31165bbc
commit dbf820e315
16 changed files with 476 additions and 4 deletions
web-frontend/modules/database

View file

@ -242,6 +242,7 @@ import {
BaserowFormulaSpecialType,
BaserowFormulaTextType,
BaserowFormulaFileType,
BaserowFormulaURLType,
} from '@baserow/modules/database/formula/formulaTypes'
import {
EmptyCountViewAggregationType,
@ -706,6 +707,7 @@ export default (context) => {
'formula_type',
new BaserowFormulaSingleSelectType(context)
)
app.$registry.register('formula_type', new BaserowFormulaURLType(context))
app.$registry.register(
'formula_type',
new BaserowFormulaMultipleSelectType(context)