mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 14:27:26 +00:00
fix : added tooltip for column fields
This commit is contained in:
@@ -153,11 +153,11 @@ const openDropDown = (e: Event) => {
|
||||
>
|
||||
<LazySmartsheetHeaderVirtualCellIcon v-if="column && !props.hideIcon" />
|
||||
|
||||
<a-tooltip placement="bottom">
|
||||
<a-tooltip placement="bottom" :title="column.title">
|
||||
<template v-if="!isForm && !isExpandedForm" #title>
|
||||
{{ tooltipMsg }}
|
||||
</template>
|
||||
<span class="name truncate pl-1" :class="{ truncate: !isForm }" :data-test-id="column.title">
|
||||
<span class="name pl-1" :class="{ truncate: !isForm }" :data-test-id="column.title">
|
||||
{{ column.title }}
|
||||
</span>
|
||||
</a-tooltip>
|
||||
@@ -205,4 +205,4 @@ const openDropDown = (e: Event) => {
|
||||
max-width: calc(100% - 40px);
|
||||
word-break: break-all;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
Reference in New Issue
Block a user