Browse Source

fix(nc-gui): text area prop type

pull/3801/head
braks 2 years ago
parent
commit
345bdd45b3
  1. 2
      packages/nc-gui/components/cell/TextArea.vue

2
packages/nc-gui/components/cell/TextArea.vue

@ -3,7 +3,7 @@ import type { VNodeRef } from '@vue/runtime-core'
import { EditModeInj, computed, inject } from '#imports'
interface Props {
modelValue: string | null | undefined
modelValue?: string | null
}
const { modelValue } = defineProps<Props>()

Loading…
Cancel
Save