Browse Source

feat(nc-gui): add isUpdateOutside after updateOrSaveRow

pull/5601/head
Wing-Kam Wong 2 years ago
parent
commit
617a4869d4
  1. 6
      packages/nc-gui/components/smartsheet/Grid.vue

6
packages/nc-gui/components/smartsheet/Grid.vue

@ -318,6 +318,12 @@ const {
// update/save cell value
await updateOrSaveRow(rowObj, ctx.updatedColumnTitle || columnObj.title)
// See DateTimePicker.vue for details
data.value[ctx.row].rowMeta.isUpdateOutside = {
...data.value[ctx.row].rowMeta.isUpdateOutside,
[ctx.updatedColumnTitle || columnObj.title]: true,
}
},
)

Loading…
Cancel
Save