fixed when we hover over bell icon tooltip is not showing

This commit is contained in:
Deepak Singh Gusain 2022-01-18 14:02:41 +05:30
parent b347ed929c
commit eb353e6f1a
4 changed files with 5 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
{
"/js/admin.js": "/js/admin.js?id=16e7709105034d93361f",
"/js/admin.js": "/js/admin.js?id=94da304c8b02ad3ba649",
"/css/admin.css": "/css/admin.css?id=8cdddf33a52d656a0b93"
}

View File

@ -1,6 +1,6 @@
<template>
<div class="notifications">
<div class="dropdown-toggle">
<div class="dropdown-toggle" data-toggle="tooltip" data-placement="bottom" :title="notifTitle">
<span class="notification-badge" v-if="totalUnRead">{{ totalUnRead }}</span>
<i class="icon notification-icon active" style="margin-left:0px"></i>
</div>
@ -90,6 +90,7 @@
export default {
props: [
'notifTitle',
'getNotificationUrl',
'viewAll',
'orderViewUrl',

View File

@ -40,6 +40,7 @@
</div>
<notification
notif-title=" {{ __('admin::app.notification.title') }}"
get-notification-url="{{ route('admin.notification.get-notification') }}"
view-all="{{ route('admin.notification.index') }}"
order-view-url="{{ \URL::to('/') }}/admin/viewed-notifications/"