1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-12 20:31:51 +00:00

Count field

This commit is contained in:
Bram Wiepjes 2023-06-01 17:15:42 +00:00
parent cd177703ea
commit 4751dc5dc6
25 changed files with 853 additions and 13 deletions
web-frontend/modules/database

View file

@ -22,6 +22,7 @@ import {
PhoneNumberFieldType,
CreatedOnFieldType,
FormulaFieldType,
CountFieldType,
LookupFieldType,
MultipleCollaboratorsFieldType,
} from '@baserow/modules/database/fieldTypes'
@ -395,6 +396,7 @@ export default (context) => {
app.$registry.register('field', new MultipleSelectFieldType(context))
app.$registry.register('field', new PhoneNumberFieldType(context))
app.$registry.register('field', new FormulaFieldType(context))
app.$registry.register('field', new CountFieldType(context))
app.$registry.register('field', new LookupFieldType(context))
app.$registry.register('field', new MultipleCollaboratorsFieldType(context))