Merge pull request #3714 from kazuhitoyokoi/master-fixdefaulticonbutton

Fix use default button for node icon
This commit is contained in:
Nick O'Leary
2022-06-27 20:36:05 +01:00
committed by GitHub

View File

@@ -37,8 +37,7 @@
if (!node._def.defaults || !node._def.defaults.hasOwnProperty("icon")) {
var icon = $("#red-ui-editor-node-icon").val()||"";
if (!this.isDefaultIcon) {
if ((icon !== node.icon) &&
(icon !== "")) {
if ((node.icon && icon !== node.icon) || (!node.icon && icon !== "")) {
editState.changes.icon = node.icon;
node.icon = icon;
editState.changed = true;