Browse Source

fix(gui-v2): feed title in case column name is null

pull/3049/head
Wing-Kam Wong 2 years ago
parent
commit
b34afd239c
  1. 5
      packages/nc-gui-v2/components/smartsheet-column/EditOrAdd.vue

5
packages/nc-gui-v2/components/smartsheet-column/EditOrAdd.vue

@ -93,6 +93,11 @@ watch(
}
},
)
// for cases like formula
if (!formState.value?.column_name) {
formState.value.column_name = formState.value?.title
}
</script>
<template>

Loading…
Cancel
Save