mirror of
https://github.com/nasa/openmct.git
synced 2025-01-22 04:18:05 +00:00
added hid/show selects
This commit is contained in:
parent
2bb2bb6a1b
commit
1b9b7e2345
@ -15,7 +15,9 @@
|
||||
</option>
|
||||
</select>
|
||||
</span>
|
||||
<span class="controls">
|
||||
<span v-if="criterion.telemetry"
|
||||
class="controls"
|
||||
>
|
||||
<select v-model="criterion.metadata">
|
||||
<option value="">- Select Field -</option>
|
||||
<option v-for="option in telemetryMetadata"
|
||||
@ -26,7 +28,9 @@
|
||||
</option>
|
||||
</select>
|
||||
</span>
|
||||
<span class="controls">
|
||||
<span v-if="criterion.telemetry && criterion.metadata"
|
||||
class="controls"
|
||||
>
|
||||
<select v-model="criterion.operation"
|
||||
@change="updateOperationInputVisibility"
|
||||
>
|
||||
@ -91,6 +95,7 @@ export default {
|
||||
mounted() {
|
||||
this.updateMetadataOptions();
|
||||
this.updateOperationInputVisibility();
|
||||
console.log('this.criterion.telemetry', this.criterion.telemetry);
|
||||
},
|
||||
methods: {
|
||||
updateMetadataOptions() {
|
||||
|
Loading…
Reference in New Issue
Block a user