Skip to content

Commit

Permalink
apps: add missing aria-label for progress
Browse files Browse the repository at this point in the history
  • Loading branch information
jelly committed Jul 4, 2023
1 parent 695df60 commit a8c5bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/apps/utils.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const ProgressBar = ({ size, title, data, ariaLabelledBy }) => {
</SplitItem>
</Split>);
} else {
return <Progress className="progress-bar" value={data.percentage} size={size} measureLocation={ProgressMeasureLocation.inside} aria-labelledby={ariaLabelledBy} />;
return <Progress aria-label={title} className="progress-bar" value={data.percentage} size={size} measureLocation={ProgressMeasureLocation.inside} aria-labelledby={ariaLabelledBy} />;
}
};

Expand Down

0 comments on commit a8c5bdf

Please sign in to comment.