aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/vlanTagging/vlan-tagging.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'vid-webpack-master/src/app/vlanTagging/vlan-tagging.module.ts')
-rw-r--r--vid-webpack-master/src/app/vlanTagging/vlan-tagging.module.ts14
1 files changed, 5 insertions, 9 deletions
diff --git a/vid-webpack-master/src/app/vlanTagging/vlan-tagging.module.ts b/vid-webpack-master/src/app/vlanTagging/vlan-tagging.module.ts
index 3227542c6..c3848998e 100644
--- a/vid-webpack-master/src/app/vlanTagging/vlan-tagging.module.ts
+++ b/vid-webpack-master/src/app/vlanTagging/vlan-tagging.module.ts
@@ -1,5 +1,4 @@
-
-import { formasync } from './../components/form-async/form-async.component';
+import { Formasync } from './form-async/form-async.component';
import {NgModule,} from '@angular/core';
import { FormsModule } from '@angular/forms';
import { VlanTaggingComponent } from './vlan-tagging.component';
@@ -9,11 +8,9 @@ import { NgReduxModule } from '@angular-redux/store';
import { SharedModule } from '../shared/shared.module';
import { NetworkSelectorComponent } from './network-selector/network-selector.component';
import { TooltipModule } from 'ngx-tooltip';
-
-
+import {FormAsyncService} from "./form-async/form-async.service";
@NgModule({
-
imports: [
CommonModule,
NgReduxModule,
@@ -23,11 +20,10 @@ imports: [
SharedModule.forRoot()
],
- providers: [ ],
- declarations: [VlanTaggingComponent,formasync,NetworkSelectorComponent],
+ providers: [ FormAsyncService ],
+ declarations: [VlanTaggingComponent, Formasync, NetworkSelectorComponent],
entryComponents: [],
- exports: [formasync]
-
+ exports: [Formasync]
})
export class VlanTaggingModule { }