Skip to content

Commit

Permalink
Fix Notification Drawer
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidResende0 committed Sep 27, 2023
1 parent 79cab86 commit 4a0177c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions client/app/core/navigation/navigation-controller.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import heading from '../../components/notifications/heading.html';
import notificationBody from '../../components/notifications/notification-body.html';
import notificationFooter from '../../components/notifications/notification-footer.html';

/** @ngInject */
export function NavigationController (Text, Navigation, Session, API_BASE, ShoppingCart, $scope, $uibModal, $state, EventNotifications, ApplianceInfo, CollectionsApi, RBAC, Language, lodash, $rootScope, sprintf) {
const vm = this
Expand Down Expand Up @@ -252,7 +256,7 @@ export function NavigationController (Text, Navigation, Session, API_BASE, Shopp

/** @ngInject */
export const navigationInit = function($templateCache) {
$templateCache.put('notifications/heading.html', require('../../components/notifications/heading.html'));
$templateCache.put('notifications/notification-body.html', require('../../components/notifications/notification-body.html'));
$templateCache.put('notifications/notification-footer.html', require('../../components/notifications/notification-footer.html'));
$templateCache.put('notifications/heading.html', heading);
$templateCache.put('notifications/notification-body.html', notificationBody);
$templateCache.put('notifications/notification-footer.html', notificationFooter);
};

0 comments on commit 4a0177c

Please sign in to comment.