From d216dc95c94815878c6c398afad06cf1d07ce71a Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Thu, 14 Sep 2023 20:52:30 +0000 Subject: [PATCH] chore: remove unnecessary log statements --- ui/src/modals/RuleModal.vue | 3 +-- ui/src/modals/RuleModalInputTabCard.vue | 7 +------ 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/ui/src/modals/RuleModal.vue b/ui/src/modals/RuleModal.vue index 166d9374..b7ba982a 100644 --- a/ui/src/modals/RuleModal.vue +++ b/ui/src/modals/RuleModal.vue @@ -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' }); }) }, diff --git a/ui/src/modals/RuleModalInputTabCard.vue b/ui/src/modals/RuleModalInputTabCard.vue index d6775061..a3a83b59 100644 --- a/ui/src/modals/RuleModalInputTabCard.vue +++ b/ui/src/modals/RuleModalInputTabCard.vue @@ -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]); @@ -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 } }