This commit is contained in:
Mirco Wittrien 2021-03-05 16:06:05 +01:00
parent 6cd4178f9b
commit c37fcbabc5
2 changed files with 2 additions and 2 deletions

View File

@ -228,7 +228,7 @@ module.exports = (_ => {
disabled: key == "rnmStart" && !automaticLoading,
value: this.props[key],
onChange: (value, instance) => {
this.props[key] = value;
this.props[key] = modalSettings[key] = value;
BDFDB.ReactUtils.forceUpdate(this);
}
}))

View File

@ -495,7 +495,7 @@ module.exports = (_ => {
disabled: key == "rnmStart" && !automaticLoading,
value: this.props[key],
onChange: (value, instance) => {
this.props[key] = value;
this.props[key] = modalSettings[key] = value;
BDFDB.ReactUtils.forceUpdate(this);
}
}))