This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new e45235e chore: fixing a pluralization typo (#19295)
e45235e is described below
commit e45235e482085739322a32a4e158507de773efbc
Author: Evan Rusackas <[email protected]>
AuthorDate: Tue Mar 22 14:44:03 2022 -0600
chore: fixing a pluralization typo (#19295)
---
superset-frontend/src/views/CRUD/welcome/Welcome.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/superset-frontend/src/views/CRUD/welcome/Welcome.tsx
b/superset-frontend/src/views/CRUD/welcome/Welcome.tsx
index bf4675f..a1f7707 100644
--- a/superset-frontend/src/views/CRUD/welcome/Welcome.tsx
+++ b/superset-frontend/src/views/CRUD/welcome/Welcome.tsx
@@ -218,7 +218,7 @@ function Welcome({ user, addDangerToast }: WelcomeProps) {
setDashboardData([]);
setLoadedCount(loadedCount => loadedCount + 1);
addDangerToast(
- t('There was an issues fetching your dashboards: %s', err),
+ t('There was an issue fetching your dashboards: %s', err),
);
});
getUserOwnedObjects(id, 'chart')
@@ -229,7 +229,7 @@ function Welcome({ user, addDangerToast }: WelcomeProps) {
.catch((err: unknown) => {
setChartData([]);
setLoadedCount(loadedCount => loadedCount + 1);
- addDangerToast(t('There was an issues fetching your chart: %s', err));
+ addDangerToast(t('There was an issue fetching your chart: %s', err));
});
getUserOwnedObjects(id, 'saved_query', ownSavedQueryFilters)
.then(r => {