Fixed: Prompt to restart after resetting API key

Fixes #3580
pull/3430/head
Mark McDowall 5 years ago
parent 2c0a0175ef
commit 438d9eb717

@ -25,8 +25,7 @@ const requiresRestartKeys = [
'sslCertHash',
'authenticationMethod',
'username',
'password',
'apiKey'
'password'
];
class GeneralSettings extends Component {
@ -46,9 +45,15 @@ class GeneralSettings extends Component {
const {
settings,
isSaving,
saveError
saveError,
isResettingApiKey
} = this.props;
if (!isResettingApiKey && prevProps.isResettingApiKey) {
this.setState({ isRestartRequiredModalOpen: true });
return;
}
if (isSaving || saveError || !prevProps.isSaving) {
return;
}

Loading…
Cancel
Save