From ad7d029ce84d6cf00e86a2c6d7907b37272fc02f Mon Sep 17 00:00:00 2001 From: Joel McKinnon Date: Tue, 18 Feb 2020 11:14:50 -0800 Subject: [PATCH] addressed review comments --- .../condition/components/ConditionCollection.vue | 10 +++++----- src/plugins/condition/components/ConditionEdit.vue | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/plugins/condition/components/ConditionCollection.vue b/src/plugins/condition/components/ConditionCollection.vue index e8b9620969..25610561ff 100644 --- a/src/plugins/condition/components/ConditionCollection.vue +++ b/src/plugins/condition/components/ConditionCollection.vue @@ -43,11 +43,11 @@
diff --git a/src/plugins/condition/components/ConditionEdit.vue b/src/plugins/condition/components/ConditionEdit.vue index 447643a4e3..d5bc206e54 100644 --- a/src/plugins/condition/components/ConditionEdit.vue +++ b/src/plugins/condition/components/ConditionEdit.vue @@ -216,19 +216,19 @@ export default { }, methods: { dragStart(e) { - this.$emit('set-move-index', Number(e.target.getAttribute('data-condition-index'))); + this.$emit('setMoveIndex', Number(e.target.getAttribute('data-condition-index'))); }, handleConditionResult(args) { - this.$emit('condition-result-updated', { + this.$emit('conditionResultUpdated', { id: this.conditionIdentifier, result: args.data.result }) }, removeCondition(ev) { - this.$emit('remove-condition', this.conditionIdentifier); + this.$emit('removeCondition', this.conditionIdentifier); }, cloneCondition(ev) { - this.$emit('clone-condition', { + this.$emit('cloneCondition', { identifier: this.conditionIdentifier, index: Number(ev.target.closest('.widget-condition').getAttribute('data-condition-index')) }); @@ -294,7 +294,7 @@ export default { //find the criterion being updated and set the input property }, updateCurrentCondition() { - this.$emit('update-current-condition', this.conditionIdentifier); + this.$emit('updateCurrentCondition', this.conditionIdentifier); } } }