Browse Source

chore(nc-gui): lint

pull/7741/head
Ramesh Mane 9 months ago
parent
commit
4ec6883df8
  1. 4
      packages/nc-gui/components/smartsheet/Form.vue

4
packages/nc-gui/components/smartsheet/Form.vue

@ -13,6 +13,7 @@ import {
isSelectTypeCol, isSelectTypeCol,
isVirtualCol, isVirtualCol,
} from 'nocodb-sdk' } from 'nocodb-sdk'
import type { VNodeRef } from '@vue/runtime-core'
import type { Permission } from '#imports' import type { Permission } from '#imports'
import { import {
ActiveViewInj, ActiveViewInj,
@ -43,7 +44,6 @@ import {
useViewData, useViewData,
watch, watch,
} from '#imports' } from '#imports'
import type { VNodeRef } from '@vue/runtime-core'
provide(IsFormInj, ref(true)) provide(IsFormInj, ref(true))
provide(IsGalleryInj, ref(false)) provide(IsGalleryInj, ref(false))
@ -915,8 +915,8 @@ useEventListener(
> >
<a-form-item v-if="isEditable" class="!my-0"> <a-form-item v-if="isEditable" class="!my-0">
<a-textarea <a-textarea
v-model:value="formViewData.heading"
:ref="focusFormTitle" :ref="focusFormTitle"
v-model:value="formViewData.heading"
class="nc-form-focus-element !p-0 !m-0 w-full !font-bold !text-2xl !border-0 !rounded-none !text-gray-900" class="nc-form-focus-element !p-0 !m-0 w-full !font-bold !text-2xl !border-0 !rounded-none !text-gray-900"
:style="{ :style="{
'borderRightWidth': '0px !important', 'borderRightWidth': '0px !important',

Loading…
Cancel
Save