addressed review comments

This commit is contained in:
Joel McKinnon 2020-02-18 11:14:50 -08:00
parent 03a6de55d6
commit ad7d029ce8
2 changed files with 10 additions and 10 deletions
src/plugins/condition/components

@ -43,11 +43,11 @@
<ConditionEdit :condition-identifier="conditionIdentifier"
:current-condition-identifier="currentConditionIdentifier"
:condition-index="index"
@update-current-condition="updateCurrentCondition"
@remove-condition="removeCondition"
@clone-condition="cloneCondition"
@condition-result-updated="handleConditionResult"
@set-move-index="setMoveIndex"
@updateCurrentCondition="updateCurrentCondition"
@removeCondition="removeCondition"
@cloneCondition="cloneCondition"
@conditionResultUpdated="handleConditionResult"
@setMoveIndex="setMoveIndex"
/>
</div>
<div v-else>

@ -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);
}
}
}