mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 15:07:06 +00:00
fix(nc-gui): rich text row height issue
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user