Merge pull request #4346 from kazuhitoyokoi/master-fixheight4templete

Fix height of description editor in template node
pull/4354/head
Nick O'Leary 2023-09-19 09:20:09 +01:00 committed by GitHub
commit 4e55408fed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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