Fixed: dispatchClearPendingChanges on some Settings Sections

This commit is contained in:
Qstick
2020-07-02 21:42:04 -04:00
parent 7f201c6677
commit f29e7557dd
4 changed files with 5 additions and 4 deletions

View File

@@ -64,7 +64,7 @@ class DownloadClientOptionsConnector extends Component {
}
componentWillUnmount() {
this.props.dispatchClearPendingChanges({ section: SECTION });
this.props.dispatchClearPendingChanges({ section: `settings.${SECTION}` });
}
//

View File

@@ -64,7 +64,7 @@ class IndexerOptionsConnector extends Component {
}
componentWillUnmount() {
this.props.dispatchClearPendingChanges({ section: SECTION });
this.props.dispatchClearPendingChanges({ section: `settings.${SECTION}` });
}
//

View File

@@ -50,7 +50,7 @@ class NamingConnector extends Component {
}
componentWillUnmount() {
this.props.clearPendingChanges({ section: SECTION });
this.props.clearPendingChanges({ section: `settings.${SECTION}` });
}
//