Ignore node-credential-issues on disabled nodes

This commit is contained in:
Jan Oberhauser
2020-02-09 23:18:44 -08:00
parent 2693b92021
commit 7ee03cf132
5 changed files with 40 additions and 37 deletions

View File

@@ -171,15 +171,7 @@ export default mixins(nodeBase, workflowHelpers).extend({
},
methods: {
disableNode () {
// Toggle disabled flag
const updateInformation = {
name: this.data.name,
properties: {
disabled: !this.data.disabled,
},
};
this.$store.commit('updateNodeProperties', updateInformation);
this.disableNodes([this.data]);
},
executeNode () {
this.$emit('runWorkflow', this.data.name);