From 504bbda0a4974d739a546370f9434a748aa26e9a Mon Sep 17 00:00:00 2001 From: Kazuhito Yokoi Date: Sun, 17 Sep 2023 03:12:20 +0900 Subject: [PATCH] Fix height of description editor in sqlite node (#1030) --- 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(); } });