diff --git a/packages/nc-gui/components/cell/RichText/SelectedBubbleMenu.vue b/packages/nc-gui/components/cell/RichText/SelectedBubbleMenu.vue index 5b922f5f5c..6132520f14 100644 --- a/packages/nc-gui/components/cell/RichText/SelectedBubbleMenu.vue +++ b/packages/nc-gui/components/cell/RichText/SelectedBubbleMenu.vue @@ -103,8 +103,8 @@ const onToggleLink = () => { type="text" :class="{ 'is-active': editor.isActive('bold') }" :disabled="editor.isActive('codeBlock')" - @click="editor!.chain().focus().toggleBold().run()" :tabindex="isFormField ? -1 : 0" + @click="editor!.chain().focus().toggleBold().run()" > @@ -124,8 +124,8 @@ const onToggleLink = () => { type="text" :disabled="editor.isActive('codeBlock')" :class="{ 'is-active': editor.isActive('italic') }" - @click=";(editor!.chain().focus() as any).toggleItalic().run()" :tabindex="isFormField ? -1 : 0" + @click=";(editor!.chain().focus() as any).toggleItalic().run()" > @@ -145,8 +145,8 @@ const onToggleLink = () => { type="text" :class="{ 'is-active': editor.isActive('underline') }" :disabled="editor.isActive('codeBlock')" - @click="editor!.chain().focus().toggleUnderline().run()" :tabindex="isFormField ? -1 : 0" + @click="editor!.chain().focus().toggleUnderline().run()" > @@ -165,8 +165,8 @@ const onToggleLink = () => { type="text" :class="{ 'is-active': editor.isActive('strike') }" :disabled="editor.isActive('codeBlock')" - @click="editor!.chain().focus().toggleStrike().run()" :tabindex="isFormField ? -1 : 0" + @click="editor!.chain().focus().toggleStrike().run()" > @@ -314,8 +314,8 @@ const onToggleLink = () => { type="text" :class="{ 'is-active': editor.isActive('link') }" :disabled="editor.isActive('codeBlock')" - @click="onToggleLink" :tabindex="isFormField ? -1 : 0" + @click="onToggleLink" >
diff --git a/packages/nc-gui/components/smartsheet/Form.vue b/packages/nc-gui/components/smartsheet/Form.vue index 83afe0e829..67455c5557 100644 --- a/packages/nc-gui/components/smartsheet/Form.vue +++ b/packages/nc-gui/components/smartsheet/Form.vue @@ -311,7 +311,6 @@ async function showOrHideColumn(column: Record, show: boolean, isSi const fieldIndex = fields.value?.findIndex((f) => f?.fk_column_id === column.fk_column_id) if (fieldIndex !== -1 && fieldIndex !== undefined && fields.value?.[fieldIndex]) { - console.log('column', column) column.show = show await $api.dbView.formColumnUpdate(column.id, column) diff --git a/packages/nc-gui/pages/index/[typeOrId]/form/[viewId]/index/survey.vue b/packages/nc-gui/pages/index/[typeOrId]/form/[viewId]/index/survey.vue index f0e7ceeee1..7b1e8f6554 100644 --- a/packages/nc-gui/pages/index/[typeOrId]/form/[viewId]/index/survey.vue +++ b/packages/nc-gui/pages/index/[typeOrId]/form/[viewId]/index/survey.vue @@ -394,7 +394,7 @@ onMounted(() => { {{ $t('msg.info.thankYou') }} -