Skip to content

Commit

Permalink
Add aria-label to the Notifications dropdown in navigation menu - #4412
Browse files Browse the repository at this point in the history
  • Loading branch information
freescout-help-desk committed Dec 10, 2024
1 parent 1ab7806 commit 2f2e010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
@php
$web_notifications_info = Auth::user()->getWebsiteNotificationsInfo();
@endphp
<a href="#" class="dropdown-toggle dropdown-toggle-icon @if ($web_notifications_info['unread_count']) @if ($web_notifications_info['unread_count']) has-unread @endif @endif" data-toggle="dropdown" role="button" aria-expanded="false" aria-haspopup="true" v-pre title="{{ __('Notifications') }}">
<a href="#" class="dropdown-toggle dropdown-toggle-icon @if ($web_notifications_info['unread_count']) @if ($web_notifications_info['unread_count']) has-unread @endif @endif" data-toggle="dropdown" role="button" aria-expanded="false" aria-haspopup="true" aria-label="{{ __('Notifications') }}" v-pre title="{{ __('Notifications') }}">
<i class="glyphicon glyphicon-bell"></i>
</a>

Expand Down

0 comments on commit 2f2e010

Please sign in to comment.