fixed when we hover over bell icon tooltip is not showing
This commit is contained in:
parent
b347ed929c
commit
eb353e6f1a
File diff suppressed because one or more lines are too long
|
|
@ -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"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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/"
|
||||
|
|
|
|||
Loading…
Reference in New Issue