Skip to content

Commit 31ec917

Browse files
committed
Add a title to notification close button
1 parent 19c06ea commit 31ec917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/frontend/Notifications.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ interface NotificationProps {
121121
const Notification: React.FC<NotificationProps> = ({ onClose, children }) => (
122122
<div className={styles.notification} data-test-id="notification">
123123
<div className={styles.notificationContent}>{children}</div>
124-
<button className={styles.close} onClick={onClose}>
124+
<button className={styles.close} onClick={onClose} title="dismiss notification">
125125
<Close />
126126
</button>
127127
</div>

0 commit comments

Comments
 (0)