Browse Source

Merge pull request #1788 from nocodb/fix/disable-clear-in-lock-view

fix: disable clear in locked view
pull/1791/head
աɨռɢӄաօռɢ 2 years ago committed by GitHub
parent
commit
b6ed0dbaa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/project/spreadsheet/rowsXcDataTable.vue

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

@ -591,7 +591,7 @@
</span>
</v-list-item>
</template>
<template v-if="rowContextMenu.col && !rowContextMenu.col.rqd && !rowContextMenu.col.virtual">
<template v-if="isEditable && !isLocked && rowContextMenu.col && !rowContextMenu.col.rqd && !rowContextMenu.col.virtual">
<v-tooltip bottom>
<template #activator="{on}">
<v-list-item v-t="['record:right-click:clear']" v-on="on" @click="clearCellValue">

Loading…
Cancel
Save