summaryrefslogtreecommitdiffstats
path: root/ui-react/src/components/dialogs/RefreshStatus.js
diff options
context:
space:
mode:
authorSébastien Determe <sebastien.determe@intl.att.com>2020-04-14 08:11:58 +0000
committerGerrit Code Review <gerrit@onap.org>2020-04-14 08:11:58 +0000
commitd3b04701712251befc0e92d96d8812029f5e313a (patch)
tree967e979402d701f994b0dd560edcded82cc058af /ui-react/src/components/dialogs/RefreshStatus.js
parentd2e5008edc93220a1117df5c864d828fbae9cc8d (diff)
parentcc5fe51690dc1f780c6b7cd1168e59dedc3b245f (diff)
Merge "Update suc alert color"
Diffstat (limited to 'ui-react/src/components/dialogs/RefreshStatus.js')
-rw-r--r--ui-react/src/components/dialogs/RefreshStatus.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-react/src/components/dialogs/RefreshStatus.js b/ui-react/src/components/dialogs/RefreshStatus.js
index 64b35d99b..bb0939152 100644
--- a/ui-react/src/components/dialogs/RefreshStatus.js
+++ b/ui-react/src/components/dialogs/RefreshStatus.js
@@ -44,12 +44,12 @@ export default class RefreshStatus extends React.Component {
componentDidMount() {
// refresh status and update loop logs
LoopActionService.refreshStatus(this.state.loopName).then(data => {
- this.props.showAlert("Status successfully refreshed");
+ this.props.showSucAlert("Status successfully refreshed");
this.props.updateLoopFunction(data);
this.props.history.push('/');
})
.catch(error => {
- this.props.showAlert("Status refreshing failed");
+ this.props.showFailAlert("Status refreshing failed");
this.props.history.push('/');
});
}