From 81c590854581cd0006447a5887a519885be35239 Mon Sep 17 00:00:00 2001 From: armadi1809 <46684200+armadi1809@users.noreply.github.com> Date: Sun, 15 Oct 2023 21:45:54 -0500 Subject: [PATCH] Set aria-live to off on span responsible for rendering the online message on a stream (#3361) Co-authored-by: Aziz Rmadi --- web/components/ui/Statusbar/Statusbar.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/components/ui/Statusbar/Statusbar.tsx b/web/components/ui/Statusbar/Statusbar.tsx index 46de28ace..66c86578c 100644 --- a/web/components/ui/Statusbar/Statusbar.tsx +++ b/web/components/ui/Statusbar/Statusbar.tsx @@ -79,7 +79,9 @@ export const Statusbar: FC = ({ return (
- {onlineMessage} + + {onlineMessage} + {rightSideMessage}
);