1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Delay clearing inflight when changing credentials key

This commit is contained in:
Nick O'Leary 2018-02-18 16:43:40 +00:00
parent f953612695
commit d6fc258485
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -1024,7 +1024,9 @@ RED.projects.settings = (function() {
},
}
},payload).always(function() {
RED.deploy.setDeployInflight(false);
setTimeout(function() {
RED.deploy.setDeployInflight(false);
},500);
});
});
var updateForm = function() {