Skip to content

Commit

Permalink
Update ReportFilter.jsx
Browse files Browse the repository at this point in the history
Change "Show" button text to reflect Loading state during loading for better user experience
  • Loading branch information
geelongmicrosoldering authored Dec 27, 2024
1 parent c3f9846 commit aff58bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reports/components/ReportFilter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const ReportFilter = ({
disabled={disabled}
onClick={() => handleClick('json')}
>
<Typography variant="button" noWrap>{t('reportShow')}</Typography>
<Typography variant="button" noWrap>{loading ? t('sharedLoading') : t('reportShow')}</Typography>
</Button>
) : (
<SplitButton
Expand Down

0 comments on commit aff58bc

Please sign in to comment.