Browse Source

Merge pull request #7593 from nocodb/fix/nc-locked-overlay

fix(nc-gui): incorrect condition blocking expand button in text area in share view
pull/7614/head
Raju Udava 9 months ago committed by GitHub
parent
commit
400af65bda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  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" /> <LazyCellJson v-else-if="isJSON(column)" v-model="vModel" />
<LazyCellText v-else v-model="vModel" /> <LazyCellText v-else v-model="vModel" />
<div <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" class="nc-locked-overlay"
/> />
</template> </template>

Loading…
Cancel
Save