fix default propertiest

This commit is contained in:
Shin'ya Ueoka 2018-01-14 09:04:30 +09:00
parent 1d85b397c9
commit 930cd14ac1

View file

@ -18,7 +18,9 @@ const loadValue = () => {
} else if (settings.source === 'form') {
value = settingsValues.valueFromForm(settings.form);
}
return value;
return Object.assign({},
settingsValues.valueFromJson(DefaultSettings.json),
value);
});
};