Browse Source

fix: advanced options style

pull/6323/head
DarkPhoenix2704 1 year ago
parent
commit
c8a3f13c25
  1. 3
      packages/nc-gui/components/smartsheet/column/AdvancedOptions.vue

3
packages/nc-gui/components/smartsheet/column/AdvancedOptions.vue

@ -82,6 +82,7 @@ vModel.value.au = !!vModel.value.au */
<a-form-item v-if="!hideLength" :label="$t('labels.lengthValue')">
<a-input
class="rounded-md"
v-model:value="vModel.dtxp"
:disabled="sqlUi.getDefaultLengthIsDisabled(vModel.dt) || !sqlUi.columnEditable(vModel)"
@input="onAlter"
@ -89,7 +90,7 @@ vModel.value.au = !!vModel.value.au */
</a-form-item>
<a-form-item v-if="sqlUi.showScale(vModel)" label="Scale">
<a-input v-model:value="vModel.dtxs" :disabled="!sqlUi.columnEditable(vModel)" @input="onAlter" />
<a-input v-model:value="vModel.dtxs" class="rounded-md" :disabled="!sqlUi.columnEditable(vModel)" @input="onAlter" />
</a-form-item>
<LazySmartsheetColumnPgBinaryOptions v-if="isPg(meta?.base_id) && vModel.dt === 'bytea'" v-model:value="vModel" />

Loading…
Cancel
Save