mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 22:28:13 +00:00
removed disabled inputs with no telemetry
This commit is contained in:
@ -76,7 +76,6 @@
|
|||||||
<label>Output</label>
|
<label>Output</label>
|
||||||
<span class="controls">
|
<span class="controls">
|
||||||
<select v-model="selectedOutputKey"
|
<select v-model="selectedOutputKey"
|
||||||
:disabled="!telemetry.length"
|
|
||||||
@change="checkInputValue"
|
@change="checkInputValue"
|
||||||
>
|
>
|
||||||
<option value="">- Select Output -</option>
|
<option value="">- Select Output -</option>
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
<div v-show="isEditing"
|
<div v-show="isEditing"
|
||||||
class="help"
|
class="help"
|
||||||
>
|
>
|
||||||
<span v-if="!telemetryObjs.length">Drag telemetry into Condition Set in order to add or edit conditions.</span>
|
<span v-if="!telemetryObjs.length">Drag telemetry into Condition Set in order to add conditions.</span>
|
||||||
<span v-else>The first condition to match is the one that wins. Drag conditions to rearrange.</span>
|
<span v-else>The first condition to match is the one that wins. Drag conditions to rearrange.</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="holder add-condition-button-wrapper align-left">
|
<div class="holder add-condition-button-wrapper align-left">
|
||||||
@ -53,9 +53,7 @@
|
|||||||
<span class="c-cs-button__label">Add Condition</span>
|
<span class="c-cs-button__label">Add Condition</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="c-c__condition-collection"
|
<div class="c-c__condition-collection">
|
||||||
:class="{ 'is-disabled': !telemetryObjs.length && isEditing}"
|
|
||||||
>
|
|
||||||
<ul class="c-c__container-holder">
|
<ul class="c-c__container-holder">
|
||||||
<li v-for="(conditionIdentifier, index) in conditionCollection"
|
<li v-for="(conditionIdentifier, index) in conditionCollection"
|
||||||
:key="conditionIdentifier.key"
|
:key="conditionIdentifier.key"
|
||||||
|
Reference in New Issue
Block a user