diff --git a/dashboard/entity/entities.component.html b/dashboard/entity/entities.component.html index f36f78d5..e8730fc3 100644 --- a/dashboard/entity/entities.component.html +++ b/dashboard/entity/entities.component.html @@ -7,7 +7,7 @@

{{name}}

-
+
@@ -16,7 +16,7 @@
-
+ -
+
diff --git a/dashboard/sharedComponents/sidebar/layout.service.ts b/dashboard/sharedComponents/sidebar/layout.service.ts index 3391a32f..866ee406 100644 --- a/dashboard/sharedComponents/sidebar/layout.service.ts +++ b/dashboard/sharedComponents/sidebar/layout.service.ts @@ -44,6 +44,11 @@ export class LayoutService { * Add activeMenuItem: string on data of route config, if page should activate a specific MenuItem and route url does not match. */ private activeMenuItemSubject: BehaviorSubject = new BehaviorSubject(""); + + /** + * Add isStickyPageHeader: + */ + private isStickyPageHeaderSubject: BehaviorSubject = new BehaviorSubject(true); sub: any; @@ -171,4 +176,12 @@ export class LayoutService { setActiveMenuItem(value: string) { this.activeMenuItemSubject.next(value); } + + get isStickyPageHeader(): Observable { + return this.isStickyPageHeaderSubject.asObservable(); + } + + setIsStickyPageHeader(value: boolean) { + this.isStickyPageHeaderSubject.next(value); + } } diff --git a/dashboard/users/role-users/role-users.component.html b/dashboard/users/role-users/role-users.component.html index 6a511a0b..86995412 100644 --- a/dashboard/users/role-users/role-users.component.html +++ b/dashboard/users/role-users/role-users.component.html @@ -39,7 +39,7 @@
-
+
No {{role}}s found
diff --git a/notifications/notify-form/notify-form.component.ts b/notifications/notify-form/notify-form.component.ts index a89b0b31..5c2ef5a2 100644 --- a/notifications/notify-form/notify-form.component.ts +++ b/notifications/notify-form/notify-form.component.ts @@ -17,7 +17,7 @@ declare var UIkit; {{label}}
-
+
{ - console.log(contents); this.divContents = contents; })); }