Merge pull request #5072 from node-red/5061-refresh-sidebar-on-lock-action

Refresh config node sidebar when changing lock state of a flow
This commit is contained in:
Nick O'Leary
2025-03-06 09:42:30 +00:00
committed by GitHub

View File

@@ -767,6 +767,7 @@ RED.workspaces = (function() {
RED.history.push(historyEvent);
RED.events.emit("flows:change",workspace);
RED.nodes.dirty(true);
RED.sidebar.config.refresh();
RED.nodes.filterNodes({z:workspace.id}).forEach(n => n.dirty = true)
RED.view.redraw(true);
}