fix the message notification badge

This commit is contained in:
Michael Weimann 2021-08-14 16:01:56 +02:00
parent 98e9af8b8d
commit d9a9b1921d
No known key found for this signature in database
GPG Key ID: 34F0524D4DA694A1
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ function user_unread_messages()
->count(); ->count();
if ($new_messages > 0) { if ($new_messages > 0) {
return ' <span class="badge danger">' . $new_messages . '</span>'; return ' <span class="badge bg-danger">' . $new_messages . '</span>';
} }
} }
return ''; return '';