diff --git a/index.html b/index.html index 095e80b594..bb5ed70d51 100644 --- a/index.html +++ b/index.html @@ -43,7 +43,7 @@ openmct.legacyRegistry.enable.bind(openmct.legacyRegistry) ); - openmct.install(openmct.plugins.Espresso()); + openmct.install(openmct.plugins.Snow()); openmct.install(openmct.plugins.MyItems()); openmct.install(openmct.plugins.LocalStorage()); openmct.install(openmct.plugins.Generator()); diff --git a/src/plugins/condition/components/Criterion.vue b/src/plugins/condition/components/Criterion.vue index e5fc6ab15d..9b90e466e2 100644 --- a/src/plugins/condition/components/Criterion.vue +++ b/src/plugins/condition/components/Criterion.vue @@ -194,14 +194,13 @@ export default { this.telemetryMetadataOptions = this.telemetryMetadata.values(); this.updateOperations(ev); this.updateOperationInputVisibility(); - this.$emit('setTelemetryName', telemetryObject.name) }); } else { this.criterion.metadata = ''; } }, updateOperations(ev) { - if (ev.target === this.$ref.telemetrySelect) { + if (ev && ev.target === this.$refs.telemetrySelect) { this.clearDependentFields(ev.target); this.persist(); } @@ -221,10 +220,10 @@ export default { } }, clearDependentFields(el) { - if (el === this.$ref.telemetrySelect) { + if (el === this.$refs.telemetrySelect) { this.criterion.metadata = ''; this.criterion.operation = ''; - } else if (el === this.$ref.metadataSelect) { + } else if (el === this.$refs.metadataSelect) { this.criterion.operation = ''; } this.criterion.input = [];