fix default propertiest
This commit is contained in:
parent
1d85b397c9
commit
930cd14ac1
1 changed files with 3 additions and 1 deletions
|
@ -18,7 +18,9 @@ const loadValue = () => {
|
||||||
} else if (settings.source === 'form') {
|
} else if (settings.source === 'form') {
|
||||||
value = settingsValues.valueFromForm(settings.form);
|
value = settingsValues.valueFromForm(settings.form);
|
||||||
}
|
}
|
||||||
return value;
|
return Object.assign({},
|
||||||
|
settingsValues.valueFromJson(DefaultSettings.json),
|
||||||
|
value);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Reference in a new issue