Browse Source

fix: add missing ?. ref: #1688

Signed-off-by: Wing-Kam Wong <wingkwong.code@gmail.com>
pull/1697/head
Wing-Kam Wong 3 years ago
parent
commit
15e75fafd9
  1. 2
      packages/nc-gui/components/project/spreadsheet/views/formView.vue

2
packages/nc-gui/components/project/spreadsheet/views/formView.vue

@ -688,7 +688,7 @@ export default {
}
},
async updateView() {
if (this.view.subheading.length > 255) {
if (this.view.subheading?.length > 255) {
this.$toast.error('Data too long for Form Description').goAway(3000)
return
}

Loading…
Cancel
Save