Browse Source

fix(nc-gui): hide formula field in new record expanded form (#9349)

pull/9359/head
Ramesh Mane 3 months ago committed by GitHub
parent
commit
8f093fd1a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/nc-gui/components/smartsheet/expanded-form/index.vue

2
packages/nc-gui/components/smartsheet/expanded-form/index.vue

@ -775,7 +775,7 @@ export default {
>
<div
v-for="(col, i) of fields"
v-show="isFormula(col) || !isVirtualCol(col) || !isNew || isLinksOrLTAR(col)"
v-show="!isVirtualCol(col) || !isNew || isLinksOrLTAR(col)"
:key="col.title"
:class="`nc-expand-col-${col.title}`"
:col-id="col.id"

Loading…
Cancel
Save