fix : added tooltip for column fields

This commit is contained in:
musharaf
2023-11-29 17:50:08 +05:30
parent b82874f9ee
commit e42a1fea17
3 changed files with 35 additions and 34 deletions

View File

@@ -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>