Add focus for notification block too

pull/39/head
Lim Chee Aun 2022-12-30 23:08:55 +08:00
rodzic 724be17d3e
commit c0234dd26e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -195,7 +195,7 @@ function NotificationsList({ notifications, emptyCopy }) {
{cleanNotifications.map((notification, i) => {
const { id, type } = notification;
return (
<li key={id} class={`notification ${type}`}>
<li key={id} class={`notification ${type}`} tabIndex="0">
<Notification notification={notification} />
</li>
);