add an aria-label to ProgressBar

This commit is contained in:
ElrikUnderlake 2023-03-06 22:41:45 -06:00
parent f0fb767f57
commit 89a8ef86b5
No known key found for this signature in database
GPG Key ID: E9A5CF18AF6E2C67

View File

@ -30,6 +30,7 @@ const ProgressBar = () => {
return ( return (
<Progress <Progress
value={value} value={value}
aria-label="Invoking progress bar"
isIndeterminate={isProcessing && !currentStatusHasSteps} isIndeterminate={isProcessing && !currentStatusHasSteps}
height={PROGRESS_BAR_THICKNESS} height={PROGRESS_BAR_THICKNESS}
zIndex={99} zIndex={99}