This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch capitalization-fix
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 256fe30943be4e055fdbab7d569c36823f5cb581
Author: Evan Rusackas <[email protected]>
AuthorDate: Mon Aug 5 16:16:42 2024 -0600

    fix(capitalization): Capitalizing a button.
---
 superset-frontend/src/pages/AlertReportList/index.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/pages/AlertReportList/index.tsx 
b/superset-frontend/src/pages/AlertReportList/index.tsx
index bb932f29be..fe61f5c8e0 100644
--- a/superset-frontend/src/pages/AlertReportList/index.tsx
+++ b/superset-frontend/src/pages/AlertReportList/index.tsx
@@ -109,7 +109,7 @@ function AlertList({
   user,
   addSuccessToast,
 }: AlertListProps) {
-  const title = isReportEnabled ? t('report') : t('alert');
+  const title = isReportEnabled ? t('Report') : t('Alert');
   const titlePlural = isReportEnabled ? t('reports') : t('alerts');
   const pathName = isReportEnabled ? 'Reports' : 'Alerts';
   const initialFilters = useMemo(

Reply via email to