diff options
author | Dan Timoney <dtimoney@att.com> | 2019-11-19 21:21:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-19 21:21:03 +0000 |
commit | f0b747065e11ee5cc1be4bad2983a557af9c7969 (patch) | |
tree | 325f2b9c7adb2b082e30c1fee9cf10f8e09b596f /cds-ui/client-frankfurt/src/app/app.module.ts | |
parent | 2783ded8664505cc0bbfd254fc2a96c5830b66a0 (diff) | |
parent | 32a1d4fac56ff29b0e50fa88bdf88047c51bc0be (diff) |
Merge "add main module and hrml of designer component in new cds ui"
Diffstat (limited to 'cds-ui/client-frankfurt/src/app/app.module.ts')
-rw-r--r-- | cds-ui/client-frankfurt/src/app/app.module.ts | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/cds-ui/client-frankfurt/src/app/app.module.ts b/cds-ui/client-frankfurt/src/app/app.module.ts index 66093b38c..c52da5cb9 100644 --- a/cds-ui/client-frankfurt/src/app/app.module.ts +++ b/cds-ui/client-frankfurt/src/app/app.module.ts @@ -1,3 +1,4 @@ + /* ============LICENSE_START========================================== =================================================================== @@ -30,13 +31,9 @@ import {MatTabsModule} from '@angular/material/tabs'; import {ApiService} from './common/core/services/api.service'; import {HttpClientModule} from '@angular/common/http'; - - @NgModule({ declarations: [ AppComponent, - - ], imports: [ BrowserModule, @@ -45,8 +42,9 @@ import {HttpClientModule} from '@angular/common/http'; AppRoutingModule, NoopAnimationsModule, MatTabsModule, - HttpClientModule + HttpClientModule, ], + providers: [ApiService], bootstrap: [AppComponent] }) |