diff options
author | Mario <mario@mariovavti.com> | 2024-07-24 20:09:07 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-07-24 20:09:07 +0000 |
commit | 9be799de15471c2e49d67fed4e5723ee7d205287 (patch) | |
tree | 5617cce4633885a7e5aa3e8ea42c4630fd2e18da | |
parent | 014737fe2147a0ea730c576433855dc46759efdd (diff) | |
download | volse-hubzilla-9be799de15471c2e49d67fed4e5723ee7d205287.tar.gz volse-hubzilla-9be799de15471c2e49d67fed4e5723ee7d205287.tar.bz2 volse-hubzilla-9be799de15471c2e49d67fed4e5723ee7d205287.zip |
fa2bi fix notifications
-rw-r--r-- | view/tpl/notifications_widget.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index caa9a4f91..5e9c15426 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -470,12 +470,12 @@ }); if(primary_available) { - $('.notifications-btn-icon').removeClass('fa-exclamation-circle'); - $('.notifications-btn-icon').addClass('fa-exclamation-triangle'); + $('.notifications-btn-icon').removeClass('bi-exclamation-circle'); + $('.notifications-btn-icon').addClass('bi-exclamation-triangle'); } else { - $('.notifications-btn-icon').removeClass('fa-exclamation-triangle'); - $('.notifications-btn-icon').addClass('fa-exclamation-circle'); + $('.notifications-btn-icon').removeClass('bi-exclamation-triangle'); + $('.notifications-btn-icon').addClass('bi-exclamation-circle'); } if(any_available) { |