|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
|
import { UITypes } from 'nocodb-sdk' |
|
|
|
|
import type { ColumnType } from 'nocodb-sdk' |
|
|
|
|
import { UITypes } from 'nocodb-sdk' |
|
|
|
|
import { |
|
|
|
|
ActiveCellInj, |
|
|
|
|
ColumnInj, |
|
|
|
@ -81,10 +81,11 @@ const isAutoSaved = $computed(() => {
|
|
|
|
|
UITypes.AutoNumber, |
|
|
|
|
UITypes.SpecificDBType, |
|
|
|
|
UITypes.Geometry, |
|
|
|
|
UITypes.Duration, |
|
|
|
|
].includes(column?.value?.uidt as UITypes) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
const isManualSaved = $computed(() => [UITypes.Currency, UITypes.Duration].includes(column?.value?.uidt as UITypes)) |
|
|
|
|
const isManualSaved = $computed(() => [UITypes.Currency].includes(column?.value?.uidt as UITypes)) |
|
|
|
|
|
|
|
|
|
const vModel = computed({ |
|
|
|
|
get: () => props.modelValue, |
|
|
|
|