mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 06:27:48 +00:00
allow blank test values for arrays
This commit is contained in:
parent
bf9d5ef4a7
commit
d6f50567bc
@ -135,7 +135,7 @@
|
|||||||
:aria-label="`Reference Test Value for ${parameter.name}`"
|
:aria-label="`Reference Test Value for ${parameter.name}`"
|
||||||
type="text"
|
type="text"
|
||||||
class="c-input--md"
|
class="c-input--md"
|
||||||
@change="updateParameters"
|
@change="updateTestValue(parameter)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -275,6 +275,13 @@ function updateAccumulateValues(parameter) {
|
|||||||
updateParameters();
|
updateParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateTestValue(parameter) {
|
||||||
|
if (parameter.accumulateValues && !Array.isArray(parameter.testValue)) {
|
||||||
|
parameter.testValue = [parameter.testValue];
|
||||||
|
}
|
||||||
|
updateParameters();
|
||||||
|
}
|
||||||
|
|
||||||
function toggleTestData() {
|
function toggleTestData() {
|
||||||
testDataApplied.value = !testDataApplied.value;
|
testDataApplied.value = !testDataApplied.value;
|
||||||
if (testDataApplied.value) {
|
if (testDataApplied.value) {
|
||||||
|
Loading…
Reference in New Issue
Block a user