mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 07:46:49 +00:00
feat: links modal revamp
This commit is contained in:
@@ -22,7 +22,7 @@ import {
|
||||
useUIPermission,
|
||||
} from '#imports'
|
||||
|
||||
const props = defineProps<{ column: ColumnType; hideMenu?: boolean; required?: boolean | number }>()
|
||||
const props = defineProps<{ column: ColumnType; hideMenu?: boolean; required?: boolean | number; hideIcon?: boolean }>()
|
||||
|
||||
const { t } = useI18n()
|
||||
|
||||
@@ -126,7 +126,7 @@ const closeAddColumnDropdown = () => {
|
||||
:class="{ 'h-full': column }"
|
||||
@click.right="isDropDownOpen = !isDropDownOpen"
|
||||
>
|
||||
<LazySmartsheetHeaderVirtualCellIcon v-if="column" />
|
||||
<LazySmartsheetHeaderVirtualCellIcon v-if="column && !props.hideIcon" />
|
||||
|
||||
<a-tooltip placement="bottom">
|
||||
<template #title>
|
||||
|
||||
Reference in New Issue
Block a user