mirror of
https://github.com/nasa/openmct.git
synced 2024-12-30 09:58:52 +00:00
Fixes saving the input value for criteria
This commit is contained in:
parent
b22ad3ded9
commit
e912ab8f4e
@ -287,7 +287,6 @@ export default {
|
||||
this.condition.definition.criteria[0].key = this.selectedTelemetryKey;
|
||||
this.condition.definition.criteria[0].metaDataKey = this.selectedMetaDataKey;
|
||||
this.condition.definition.criteria[0].operation = this.selectedOperationKey;
|
||||
this.condition.definition.criteria[0].input = this.operationValue || '';
|
||||
}
|
||||
},
|
||||
persist() {
|
||||
@ -315,7 +314,7 @@ export default {
|
||||
this.updateTelemetry();
|
||||
},
|
||||
getOperationValue(ev) {
|
||||
// this.condition.definition.criteria[0].input = [ev.target.value];
|
||||
this.condition.definition.criteria[0].input = [ev.target.value];
|
||||
this.updateConditionCriteria();
|
||||
//find the criterion being updated and set the input property
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user