Browse Source

fix: hide description in expanded-view menu options

pull/9320/head
DarkPhoenix2704 3 months ago
parent
commit
6147696f39
  1. 2
      packages/nc-gui/components/smartsheet/header/Menu.vue

2
packages/nc-gui/components/smartsheet/header/Menu.vue

@ -429,7 +429,7 @@ const onClickCopyFieldUrl = async (field: ColumnType) => {
>
<div class="flex gap-0.5 items-center" @dblclick.stop>
<div v-if="isExpandedForm" class="h-[1px]">&nbsp;</div>
<NcTooltip v-if="column.description?.length">
<NcTooltip v-if="column.description?.length && !isExpandedForm">
<template #title>
{{ column.description }}
</template>

Loading…
Cancel
Save