Add accessible name label for Progress component

Fixes the error: One of aria-label or aria-labelledby properties should
be passed when using the progress component without a title.
This commit is contained in:
Justin Stephenson 2023-04-26 12:35:40 -04:00
parent 7c75596330
commit e151c9ee8f

View file

@ -1273,6 +1273,7 @@ export class Player extends React.Component {
label={timeStr} label={timeStr}
value={this.state.curTS} value={this.state.curTS}
onClick={this.handleProgressClick} onClick={this.handleProgressClick}
aria-label="Player Progress"
/> />
); );