tweak ngbmodule import
authorBill Erickson <berickxx@gmail.com>
Mon, 8 Jul 2019 15:52:29 +0000 (11:52 -0400)
committerBill Erickson <berickxx@gmail.com>
Mon, 8 Jul 2019 15:52:29 +0000 (11:52 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/src/eg2/src/app/app.module.ts

index 20de8ab..a008075 100644 (file)
@@ -13,6 +13,8 @@ import {BaseComponent} from './app.component';
 import {BaseRoutingModule} from './routing.module';
 import {WelcomeComponent} from './welcome.component';
 
+const ngbModule = NgbModule.forRoot();
+
 @NgModule({
   declarations: [
     BaseComponent,
@@ -22,7 +24,8 @@ import {WelcomeComponent} from './welcome.component';
     EgCommonModule.forRoot(),
     BaseRoutingModule,
     BrowserModule,
-    NgbModule.forRoot(),
+    ngbModule,
+    //NgbModule.forRoot(),
     CookieModule.forRoot()
   ],
   exports: [],