removed call to checkTelemetry in computed prop, removed if in persist(), changed key in v-for for criteria

This commit is contained in:
Joel McKinnon 2020-04-01 13:34:17 -07:00
parent 2edfeaa606
commit 1beba78111
2 changed files with 3 additions and 5 deletions

View File

@ -122,7 +122,7 @@
<template v-if="telemetry.length || condition.configuration.criteria.length">
<div v-for="(criterion, index) in condition.configuration.criteria"
:key="index"
:key="criterion.telemetry.key"
class="c-cdef__criteria"
>
<Criterion :telemetry="telemetry"

View File

@ -172,7 +172,6 @@ export default {
}
}
}
this.checkTelemetry();
return inputCount;
}
},
@ -185,6 +184,7 @@ export default {
}
},
mounted() {
console.log(this.criterion);
this.updateMetadataOptions();
},
methods: {
@ -287,9 +287,7 @@ export default {
}
},
persist() {
if (this.criterion.telemetry && this.criterion.metadata !== '' && this.criterion.operation !== '') {
this.$emit('persist', this.criterion);
}
this.$emit('persist', this.criterion);
}
}
};