fix: Text property in custom database

This commit is contained in:
2024-07-14 17:52:43 +01:00
parent 654e7e854d
commit 36725cb699
4 changed files with 6 additions and 14 deletions

View File

@@ -286,7 +286,7 @@ export class EditModal extends SettingModal {
propertyLine.addDropdown((dropdown) => {
const options: Record<string, string> = {
'text': 'Text',
'rich_text': 'Text',
'number': 'Number',
'select': 'Select',
'multi_select': 'Multi-Select',

View File

@@ -151,7 +151,7 @@ export class PreviewModal extends Modal {
propertyLine.addDropdown((dropdown) => {
const options: Record<string, string> = {
'title': 'Title',
'text': 'Text',
'rich_text': 'Text',
'number': 'Number',
'select': 'Select',
'multi_select': 'Multi-Select',

View File

@@ -239,7 +239,7 @@ export class SettingModal extends Modal {
propertyLine.addDropdown((dropdown) => {
const options: Record<string, string> = {
'text': 'Text',
'rich_text': 'Text',
'number': 'Number',
'select': 'Select',
'multi_select': 'Multi-Select',