mirror of
https://github.com/nasa/openmct.git
synced 2025-04-03 01:11:33 +00:00
removed call to checkTelemetry in computed prop, removed if in persist(), changed key in v-for for criteria
This commit is contained in:
parent
2edfeaa606
commit
1beba78111
@ -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"
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user