mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 17:37:11 +00:00
Bug fix for issue #5438, resolved text-overflow with text-wrapping
This commit is contained in:
@@ -121,7 +121,7 @@ const closeAddColumnDropdown = () => {
|
||||
<template #title>
|
||||
{{ tooltipMsg }}
|
||||
</template>
|
||||
<span class="name" style="white-space: nowrap" :title="column.title"> {{ column.title }}</span>
|
||||
<span class="name" style="white-space: pre-line" :title="column.title"> {{ column.title }}</span>
|
||||
</a-tooltip>
|
||||
|
||||
<span v-if="isVirtualColRequired(column, meta?.columns || []) || required" class="text-red-500"> *</span>
|
||||
@@ -164,7 +164,6 @@ const closeAddColumnDropdown = () => {
|
||||
<style scoped>
|
||||
.name {
|
||||
max-width: calc(100% - 40px);
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
word-break: break-all;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user