Browse Source

fix(nc-gui): incorrect condition to block expand in text area

pull/7593/head
աɨռɢӄաօռɢ 7 months ago
parent
commit
af4afe228f
  1. 2
      packages/nc-gui/components/smartsheet/Cell.vue

2
packages/nc-gui/components/smartsheet/Cell.vue

@ -252,7 +252,7 @@ onUnmounted(() => {
<LazyCellJson v-else-if="isJSON(column)" v-model="vModel" />
<LazyCellText v-else v-model="vModel" />
<div
v-if="(isPublic && readOnly && !isForm) || (isSystemColumn(column) && !isAttachment(column) && !isTextArea(column))"
v-if="((isPublic && readOnly && !isForm) || (isSystemColumn(column) && !isAttachment(column))) && !isTextArea(column)"
class="nc-locked-overlay"
/>
</template>

Loading…
Cancel
Save