Browse Source

fix: word wrap issue #2111

pull/7413/head
Ramesh Mane 8 months ago
parent
commit
665ec2ee7e
  1. 2
      packages/nc-gui/components/cell/Text.vue

2
packages/nc-gui/components/cell/Text.vue

@ -60,5 +60,5 @@ const focus: VNodeRef = (el) =>
<span v-else-if="vModel === null && showNull" class="nc-null uppercase">{{ $t('general.null') }}</span>
<LazyCellClampedText v-else :value="vModel" :lines="rowHeight" />
<LazyCellClampedText v-else :value="vModel" :lines="rowHeight" :style="{ 'word-break': 'break-word' }" />
</template>

Loading…
Cancel
Save