Skip to content

Commit

Permalink
chore: remove unnecessary log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Sep 14, 2023
1 parent 7517b21 commit d216dc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
3 changes: 1 addition & 2 deletions ui/src/modals/RuleModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,7 @@ export default {
newRules.push(finalRuleToCreate)
});
const res = await Promise.all(newRules.map((newRule) => this.$http.post(`rule`, newRule)));
console.log(res)
const _res = await Promise.all(newRules.map((newRule) => this.$http.post(`rule`, newRule)));
this.$notify({ text: `Successfully created DWI Pipeline`, type: 'success' });
})
},
Expand Down
7 changes: 1 addition & 6 deletions ui/src/modals/RuleModalInputTabCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,6 @@ export default {
}
},
watch: {
editExtraTags: {
handler: function() {
console.log(this.editExtraTags)
}
},
triggerWatcher: {
handler: function() {
if(debounce[this.input.id]) clearTimeout(debounce[this.input.id]);
Expand Down Expand Up @@ -265,7 +260,7 @@ export default {
this.loadInputDatasetTags();
// automatically open tag editor if we see that extra datatype tags already exist.
// This happens when we edit a rule
// This check happens when we edit a rule or select an app when creating a new rule
this.editExtraTags = (this.inputExtraDatatypeTags || []).length > 0
}
}
Expand Down

0 comments on commit d216dc9

Please sign in to comment.