mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
Set aria-live to off on span responsible for rendering the online message on a stream (#3361)
Co-authored-by: Aziz Rmadi <azizrmadi@Azizs-MacBook-Air.local>
This commit is contained in:
parent
0c06c39960
commit
81c5908545
1 changed files with 3 additions and 1 deletions
|
@ -79,7 +79,9 @@ export const Statusbar: FC<StatusbarProps> = ({
|
|||
|
||||
return (
|
||||
<div className={classNames(styles.statusbar, className)} role="status">
|
||||
<span className={styles.onlineMessage}>{onlineMessage}</span>
|
||||
<span aria-live="off" className={styles.onlineMessage}>
|
||||
{onlineMessage}
|
||||
</span>
|
||||
<span className={styles.viewerCount}>{rightSideMessage}</span>
|
||||
</div>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue