mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-24 08:48:47 +01:00
Add focus for notification block too
This commit is contained in:
parent
724be17d3e
commit
c0234dd26e
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue