Skip to content

Commit

Permalink
fix(capitalization): Capitalizing a button. (#29867)
Browse files Browse the repository at this point in the history
  • Loading branch information
rusackas authored Aug 6, 2024
1 parent 61c0970 commit 052b38b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset-frontend/src/pages/AlertReportList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 052b38b

Please sign in to comment.