From 0c581b629723e70392a1fe0ee05c800706a87eca Mon Sep 17 00:00:00 2001 From: Kazuhito Yokoi Date: Sat, 16 Sep 2023 15:54:04 +0900 Subject: [PATCH] Fix height of description editor in sqlite node --- storage/sqlite/sqlite.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/sqlite/sqlite.html b/storage/sqlite/sqlite.html index faca8ab7..adc7d89a 100644 --- a/storage/sqlite/sqlite.html +++ b/storage/sqlite/sqlite.html @@ -124,7 +124,7 @@ } var editorRow = $("#dialog-form>div.node-text-editor-row"); height -= (parseInt(editorRow.css("marginTop"))+parseInt(editorRow.css("marginBottom"))); - $(".node-text-editor").css("height",height+"px"); + $("#dialog-form .node-text-editor").css("height",height+"px"); this.editor.resize(); } });