Browse Source

Merge pull request #1602 from mertmit/fix-ss-default

fix: select field default value removal
pull/1608/head
աɨռɢӄաօռɢ 2 years ago committed by GitHub
parent
commit
99addbf33f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/project/spreadsheet/components/editColumn.vue
  2. 2
      packages/nc-gui/components/project/spreadsheet/components/editColumn/customSelectOptions.vue

2
packages/nc-gui/components/project/spreadsheet/components/editColumn.vue

@ -353,7 +353,7 @@
outlined
dense
class="caption"
@input="newColumn.altered = newColumn.altered || 2"
@input="(newColumn.altered = newColumn.altered || 2); (newColumn.cdf = newColumn.cdf || null);"
/>
</v-col>
</v-row>

2
packages/nc-gui/components/project/spreadsheet/components/editColumn/customSelectOptions.vue

@ -10,7 +10,7 @@
</v-icon>
<v-text-field
:autofocus="true"
:value="localState[i]"
v-model="localState[i]"
@input="listenForComma(i, $event)"
class="caption"
dense

Loading…
Cancel
Save