NIFI-6290:

- Ensuring the first allowable value is selected.
This commit is contained in:
Matt Gilman 2019-08-27 15:12:05 -04:00 committed by Scott Aslan
parent e5850fa1a3
commit f318a8c685
1 changed files with 6 additions and 0 deletions

View File

@ -723,7 +723,13 @@
} else {
parameterCombo.combo('setSelectedOption', initialOption);
}
} else {
// select the first option
allowableValuesCombo.combo('setSelectedOption', allowableValueOptions[0]);
}
} else {
// select the first option
allowableValuesCombo.combo('setSelectedOption', allowableValueOptions[0]);
}
};