Browse Source

fix(nc-gui): sync option when we select selectType option color (#8767)

pull/8772/head
Ramesh Mane 2 weeks ago committed by GitHub
parent
commit
f0c7b76243
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      packages/nc-gui/components/smartsheet/column/SelectOptions.vue

5
packages/nc-gui/components/smartsheet/column/SelectOptions.vue

@ -522,7 +522,10 @@ if (isKanbanStack.value) {
<LazyGeneralAdvanceColorPicker
v-model="element.color"
:is-open="colorMenus[index]"
@input="(el:string) => (element.color = el)"
@input="(el:string) => {
element.color = el
optionChanged(element)
}"
></LazyGeneralAdvanceColorPicker>
</div>
</template>

Loading…
Cancel
Save