mirror of https://github.com/apache/nifi.git
NIFI-6290:
- Ensuring the first allowable value is selected.
This commit is contained in:
parent
e5850fa1a3
commit
f318a8c685
|
@ -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]);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue