Browse Source

Merge pull request #9320 from nocodb/nc-fix/descriptiosn

fix: hide description in expanded-view menu options
nc-chore/remove-signout-admin-page
Ramesh Mane 3 months ago committed by GitHub
parent
commit
5fc07abdc7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  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