Browse Source

fix(gui-v2): formula value type issue

pull/3049/head
Wing-Kam Wong 2 years ago
parent
commit
c6a529a4cb
  1. 2
      packages/nc-gui-v2/components/virtual-cell/Formula.vue

2
packages/nc-gui-v2/components/virtual-cell/Formula.vue

@ -19,7 +19,7 @@ const showEditFormulaWarningMessage = () => {
}, 3000)
}
const result = computed(() => (isPg ? handleTZ(value) : value))
const result = isPg ? handleTZ(value) : value
const urls = computed(() => replaceUrlsWithLink(result.value))
</script>

Loading…
Cancel
Save