We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 394cd16 commit 4c65cfbCopy full SHA for 4c65cfb
packages/react-core/src/components/NotificationDrawer/NotificationDrawerHeader.tsx
@@ -42,7 +42,9 @@ export const NotificationDrawerHeader: React.FunctionComponent<NotificationDrawe
42
{title}
43
</Text>
44
{(customText !== undefined || count !== undefined) && (
45
- <span className={css(styles.notificationDrawerHeaderStatus)}>{customText || `${count} ${unreadText}`}</span>
+ <span className={css(styles.notificationDrawerHeaderStatus)} aria-live="polite">
46
+ {customText || `${count} ${unreadText}`}
47
+ </span>
48
)}
49
{(children || onClose) && (
50
<div className={css(styles.notificationDrawerHeaderAction)}>
0 commit comments