Browse Source

fix: Added truncation to column title in rich text modal and increased rich modal width

pull/7046/head
Muhammed Mustafa 1 year ago
parent
commit
321b2fd750
  1. 6
      packages/nc-gui/components/cell/TextArea.vue

6
packages/nc-gui/components/cell/TextArea.vue

@ -171,14 +171,16 @@ watch(editEnabled, () => {
</div> </div>
</div> </div>
<template #overlay> <template #overlay>
<div ref="inputWrapperRef" class="flex flex-col min-w-120 min-h-70 py-3 pl-3 pr-1 expanded-cell-input relative"> <div ref="inputWrapperRef" class="flex flex-col min-w-150 min-h-70 py-3 pl-3 pr-1 expanded-cell-input relative">
<div <div
v-if="column" v-if="column"
class="flex flex-row gap-x-1 items-center font-medium pb-2.5 mb-1 py-1 mr-3 ml-1 border-b-1 border-gray-100" class="flex flex-row gap-x-1 items-center font-medium pb-2.5 mb-1 py-1 mr-3 ml-1 border-b-1 border-gray-100"
> >
<SmartsheetHeaderCellIcon class="flex" /> <SmartsheetHeaderCellIcon class="flex" />
<div class="flex"> <div class="flex max-w-38">
<span class="truncate">
{{ column.title }} {{ column.title }}
</span>
</div> </div>
</div> </div>
<a-textarea <a-textarea

Loading…
Cancel
Save