mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
include dirty state in history event
This commit is contained in:
parent
e308e02f9d
commit
639030924f
@ -1089,6 +1089,7 @@ RED.view.tools = (function() {
|
||||
linkGroups.sort(function(A,B) {
|
||||
return groupedLinks[B].length - groupedLinks[A].length
|
||||
})
|
||||
const wasDirty = RED.nodes.dirty()
|
||||
linkGroups.forEach(function(gid) {
|
||||
var links = groupedLinks[gid]
|
||||
var junction = {
|
||||
@ -1179,6 +1180,7 @@ RED.view.tools = (function() {
|
||||
})
|
||||
if (addedJunctions.length > 0) {
|
||||
RED.history.push({
|
||||
dirty: wasDirty,
|
||||
t: 'add',
|
||||
links: addedLinks,
|
||||
junctions: addedJunctions,
|
||||
|
Loading…
Reference in New Issue
Block a user