We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55834bc commit 50ec507Copy full SHA for 50ec507
src/app/app.module.ts
@@ -26,7 +26,8 @@ import {
26
AppHeaderModule,
27
AppFooterModule,
28
AppSidebarModule,
29
-} from '../../dist/@coreui/angular';
+} from '../../projects/coreui/angular/src/public-api';
30
+// } from '../../dist/@coreui/angular';
31
32
// Import routing module
33
import { AppRoutingModule } from './app.routing';
src/app/containers/default-layout/default-layout.component.ts
@@ -10,7 +10,7 @@ export class DefaultLayoutComponent {
10
minimized = false;
11
public navItems = [...navItems];
12
13
- toggleMinimize(e) {
+ toggleMinimize(e: boolean) {
14
this.minimized = e;
15
}
16
0 commit comments