Browse Source

fix: hide Clear option for Formula columns

pull/2178/head
Wing-Kam Wong 2 years ago
parent
commit
9031f3efc6
  1. 2
      packages/nc-gui/components/project/spreadsheet/RowsXcDataTable.vue

2
packages/nc-gui/components/project/spreadsheet/RowsXcDataTable.vue

@ -618,7 +618,7 @@
</v-list-item>
</template>
<template v-if="isEditable && !isLocked && rowContextMenu.col && !rowContextMenu.col.rqd && !rowContextMenu.col.virtual">
<template v-if="isEditable && !isLocked && rowContextMenu.col && !rowContextMenu.col.rqd && !rowContextMenu.col.virtual && rowContextMenu.col.uidt !== 'Formula'">
<v-tooltip bottom>
<template #activator="{ on }">
<v-list-item

Loading…
Cancel
Save