зеркало из
1
0
Форкнуть 0

issues if initialValue is equal to undefind return null value is not requierd

This commit is contained in:
AminTi 2022-08-10 13:49:40 +00:00
Родитель 02eeedcb10
Коммит c9b0b64d87
2 изменённых файлов: 2438 добавлений и 11 удалений

2446
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -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());