Fix height of description editor in data generator node (#1031)

This commit is contained in:
Kazuhito Yokoi 2023-09-19 02:42:19 +09:00 committed by GitHub
parent 8e2f8b60e0
commit 36d33b3268
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,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();
}
});