From 35db7fb6c52465f91452a6ac1f540f4d64413908 Mon Sep 17 00:00:00 2001 From: Luis Casillas Date: Tue, 10 May 2022 15:20:56 -0500 Subject: [PATCH] fix: Making chart update more truthful (#19877) * Update index.jsx * Update superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx Co-authored-by: Evan Rusackas * Update superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx Fixing case 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 45946ecc8fa1..ad3dd91ec7ee 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('Refreshing charts')); break; case MENU_KEYS.EDIT_PROPERTIES: this.props.showPropertiesModal();