diff --git a/packages/nc-gui/components/smartsheet/header/Menu.vue b/packages/nc-gui/components/smartsheet/header/Menu.vue index e002327536..9ee42078f6 100644 --- a/packages/nc-gui/components/smartsheet/header/Menu.vue +++ b/packages/nc-gui/components/smartsheet/header/Menu.vue @@ -285,6 +285,13 @@ const isDeleteAllowed = computed(() => { } return true }) +const isDuplicateAllowed = computed(() => { + if (!column?.value) return false + if (column.value.system) { + return false + } + return true +})