issues if initialValue is equal to undefind return null value is not requierd
This commit is contained in:
Родитель
02eeedcb10
Коммит
c9b0b64d87
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -83,12 +83,13 @@ export class Settings {
|
|||
|
||||
private getNumeralComboOptions(id, source: number[], initialValue: number):IComboOptions {
|
||||
var that = this;
|
||||
const currentInitialValue = initialValue ? initialValue?.toString(): null
|
||||
return {
|
||||
id: id,
|
||||
mode: "drop",
|
||||
source: source,
|
||||
enabled: true,
|
||||
value: initialValue.toString(),
|
||||
value: currentInitialValue,
|
||||
change: function () {
|
||||
that._changeMade = true;
|
||||
let num: number = +(this.getText());
|
||||
|
|
Загрузка…
Ссылка в новой задаче