mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
Merge pull request #1521 from 4Science/fix-notifications-issue
Fixed notifications duplicate issue
This commit is contained in:
@@ -1,14 +1,10 @@
|
|||||||
<div class="outer-wrapper" *ngIf="!shouldShowFullscreenLoader; else fullScreenLoader">
|
<div class="outer-wrapper" *ngIf="!shouldShowFullscreenLoader; else fullScreenLoader">
|
||||||
<ds-themed-admin-sidebar></ds-themed-admin-sidebar>
|
<ds-themed-admin-sidebar></ds-themed-admin-sidebar>
|
||||||
<div class="inner-wrapper" [@slideSidebarPadding]="{
|
<div class="inner-wrapper" [@slideSidebarPadding]="{
|
||||||
value: (!(sidebarVisible | async) ? 'hidden' : (slideSidebarOver | async) ? 'shown' : 'expanded'),
|
value: (!(sidebarVisible | async) ? 'hidden' : (slideSidebarOver | async) ? 'shown' : 'expanded'),
|
||||||
params: {collapsedSidebarWidth: (collapsedSidebarWidth | async), totalSidebarWidth: (totalSidebarWidth | async)}
|
params: {collapsedSidebarWidth: (collapsedSidebarWidth | async), totalSidebarWidth: (totalSidebarWidth | async)}
|
||||||
}">
|
}">
|
||||||
<ds-themed-header-navbar-wrapper></ds-themed-header-navbar-wrapper>
|
<ds-themed-header-navbar-wrapper></ds-themed-header-navbar-wrapper>
|
||||||
|
|
||||||
<ds-notifications-board
|
|
||||||
[options]="notificationOptions">
|
|
||||||
</ds-notifications-board>
|
|
||||||
<main class="main-content">
|
<main class="main-content">
|
||||||
<ds-themed-breadcrumbs></ds-themed-breadcrumbs>
|
<ds-themed-breadcrumbs></ds-themed-breadcrumbs>
|
||||||
|
|
||||||
@@ -23,6 +19,9 @@
|
|||||||
<ds-themed-footer></ds-themed-footer>
|
<ds-themed-footer></ds-themed-footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<ds-notifications-board [options]="notificationOptions">
|
||||||
|
</ds-notifications-board>
|
||||||
<ng-template #fullScreenLoader>
|
<ng-template #fullScreenLoader>
|
||||||
<div class="ds-full-screen-loader">
|
<div class="ds-full-screen-loader">
|
||||||
<ds-loading [showMessage]="false"></ds-loading>
|
<ds-loading [showMessage]="false"></ds-loading>
|
||||||
|
Reference in New Issue
Block a user