Skip to content

Commit

Permalink
Merge pull request #858 from replicatedhq/jelena-config-errors
Browse files Browse the repository at this point in the history
Fix - kots config screen Save button does not surface errors
  • Loading branch information
jgruica committed Jul 27, 2020
2 parents efca5cd + de9c425 commit 9a4a699
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kotsadm/web/src/components/apps/AppConfig.jsx
Expand Up @@ -141,8 +141,7 @@ class AppConfig extends Component {
}
})
.catch((err) => {
console.error(err);
this.setState({ savingConfig: false });
this.setState({ savingConfig: false, savingConfigError: err ? err.message : "Something went wrong, please try again!" });
});
}

Expand Down

0 comments on commit 9a4a699

Please sign in to comment.