Skip to content

Commit d0d4ae7

Browse files
committed
clean-up
1 parent 6b038dd commit d0d4ae7

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

angular_cli_full_project/src/app/app.module.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = {
1111
};
1212

1313
import { AppComponent } from './app.component';
14-
import { navItems } from './_nav';
1514

1615
// Import containers
1716
import {

angular_cli_full_project/src/app/containers/full-layout/full-layout.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<router-outlet></router-outlet>
7171
</div><!-- /.container-fluid -->
7272
</main>
73-
<app-aside [fixed]="true" [display]="'lg'">
73+
<app-aside [fixed]="true" [display]="false'">
7474
<tabset>
7575
<tab>
7676
<ng-template tabHeading><i class="icon-list"></i></ng-template>

angular_cli_starter/src/app/app.module.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = {
1111
};
1212

1313
import { AppComponent } from './app.component';
14-
import { navItems } from './_nav';
1514

1615
// Import containers
1716
import {
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import { Component } from '@angular/core';
2+
import { navItems } from './../../_nav';
23

34
@Component({
45
selector: 'app-dashboard',
56
templateUrl: './full-layout.component.html'
67
})
7-
export class FullLayoutComponent { }
8+
export class FullLayoutComponent {
9+
public navItems = navItems;
10+
}

0 commit comments

Comments
 (0)