mirror of
https://github.com/nasa/openmct.git
synced 2025-06-15 13:48:12 +00:00
Fix small bug with inputCount
This commit is contained in:
@ -58,17 +58,19 @@
|
|||||||
<span v-if="inputIndex < inputCount-1">and</span>
|
<span v-if="inputIndex < inputCount-1">and</span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="enumerations.length && criterion.operation"
|
<span v-else>
|
||||||
class="c-cdef__control"
|
<span v-if="inputCount && criterion.operation"
|
||||||
>
|
class="c-cdef__control"
|
||||||
<select v-model="criterion.input[0]">
|
>
|
||||||
<option v-for="option in enumerations"
|
<select v-model="criterion.input[0]">
|
||||||
:key="option.string"
|
<option v-for="option in enumerations"
|
||||||
:value="option.value.toString()"
|
:key="option.string"
|
||||||
>
|
:value="option.value.toString()"
|
||||||
{{ option.string }}
|
>
|
||||||
</option>
|
{{ option.string }}
|
||||||
</select>
|
</option>
|
||||||
|
</select>
|
||||||
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
Reference in New Issue
Block a user