fix(nc-gui): rich text row height issue

This commit is contained in:
Ramesh Mane
2024-01-17 07:24:57 +00:00
parent b320191fb8
commit f5cd8c63c4
2 changed files with 3 additions and 3 deletions

View File

@@ -178,8 +178,8 @@ watch(editEnabled, () => {
v-if="isRichMode"
class="w-full cursor-pointer"
:style="{
maxHeight: `${height}px !important`,
minHeight: `${height}px !important`,
maxHeight: isExpandedFormOpen ? `${height}px !important` : `${25 * (rowHeight || 1)}px !important`,
minHeight: isExpandedFormOpen ? `${height}px !important` : `${25 * (rowHeight || 1)}px !important`,
}"
@dblclick="onExpand"
@keydown.enter="onExpand"