Browse Source

Merge pull request #4943 from nocodb/fix/clamped-text

test: clamped text issue with pg
pull/4944/head
Pranav C 2 years ago committed by GitHub
parent
commit
3dfffa2d7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/cell/ClampedText.vue

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

@ -19,6 +19,6 @@ onMounted(() => {
<template>
<div ref="wrapper">
<text-clamp :key="key" class="w-full h-full break-all" :text="props.value || ''" :max-lines="props.lines" />
<text-clamp :key="key" class="w-full h-full break-all" :text="`${props.value || ''}`" :max-lines="props.lines" />
</div>
</template>

Loading…
Cancel
Save