From e954bc6c741673b1d5909ee52fe0761f6811e554 Mon Sep 17 00:00:00 2001 From: Luis Casillas Date: Wed, 27 Apr 2022 20:46:51 -0500 Subject: [PATCH 1/3] Update index.jsx --- .../dashboard/components/Header/HeaderActionsDropdown/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx b/superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx index 45946ecc8fa13..31b64f6217d96 100644 --- a/superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx +++ b/superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx @@ -158,7 +158,7 @@ class HeaderActionsDropdown extends React.PureComponent { switch (key) { case MENU_KEYS.REFRESH_DASHBOARD: this.props.forceRefreshAllCharts(); - this.props.addSuccessToast(t('Data refreshed')); + this.props.addSuccessToast(t('Started refreshing Charts')); break; case MENU_KEYS.EDIT_PROPERTIES: this.props.showPropertiesModal(); From 9327723fad999367c2b6cddad437793034001f0a Mon Sep 17 00:00:00 2001 From: Luis Casillas Date: Thu, 28 Apr 2022 16:59:27 -0500 Subject: [PATCH 2/3] Update superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx Co-authored-by: Evan Rusackas --- .../dashboard/components/Header/HeaderActionsDropdown/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx b/superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx index 31b64f6217d96..4f110fa6f275c 100644 --- a/superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx +++ b/superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx @@ -158,7 +158,7 @@ class HeaderActionsDropdown extends React.PureComponent { switch (key) { case MENU_KEYS.REFRESH_DASHBOARD: this.props.forceRefreshAllCharts(); - this.props.addSuccessToast(t('Started refreshing Charts')); + this.props.addSuccessToast(t('Refreshing Charts')); break; case MENU_KEYS.EDIT_PROPERTIES: this.props.showPropertiesModal(); From 96eb5c826b49fc6fe81b2322d6325f11b68e075e Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Thu, 5 May 2022 14:26:17 -0600 Subject: [PATCH 3/3] Update superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx Fixing case --- .../dashboard/components/Header/HeaderActionsDropdown/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx b/superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx index 4f110fa6f275c..ad3dd91ec7ee5 100644 --- a/superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx +++ b/superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx @@ -158,7 +158,7 @@ class HeaderActionsDropdown extends React.PureComponent { switch (key) { case MENU_KEYS.REFRESH_DASHBOARD: this.props.forceRefreshAllCharts(); - this.props.addSuccessToast(t('Refreshing Charts')); + this.props.addSuccessToast(t('Refreshing charts')); break; case MENU_KEYS.EDIT_PROPERTIES: this.props.showPropertiesModal();