Skip to content

Commit 50ec507

Browse files
committed
refactor(app): minor fixes
1 parent 55834bc commit 50ec507

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/app/app.module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import {
2626
AppHeaderModule,
2727
AppFooterModule,
2828
AppSidebarModule,
29-
} from '../../dist/@coreui/angular';
29+
} from '../../projects/coreui/angular/src/public-api';
30+
// } from '../../dist/@coreui/angular';
3031

3132
// Import routing module
3233
import { AppRoutingModule } from './app.routing';

src/app/containers/default-layout/default-layout.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export class DefaultLayoutComponent {
1010
minimized = false;
1111
public navItems = [...navItems];
1212

13-
toggleMinimize(e) {
13+
toggleMinimize(e: boolean) {
1414
this.minimized = e;
1515
}
1616
}

0 commit comments

Comments
 (0)