Skip to content

Commit 01bb106

Browse files
CarlesLopezMagemmledour
authored andcommitted
isCustomLayout BehaviorSubject on LayoutService init with false (#47)
1 parent 649aa0d commit 01bb106

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/angular-admin-lte/src/lib/layout/layout.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ActivatedRoute, ActivationStart, Router, RouterEvent } from '@angular/r
66

77
@Injectable()
88
export class LayoutService {
9-
public isCustomLayout: BehaviorSubject<boolean> = new BehaviorSubject(true);
9+
public isCustomLayout: BehaviorSubject<boolean> = new BehaviorSubject(false);
1010

1111
private customLayout: boolean;
1212

0 commit comments

Comments
 (0)