Unverified Commit 8275a5d0 authored by Ruslan Konviser's avatar Ruslan Konviser Committed by GitHub
Browse files

Merge pull request #1116 from ever-co/fix/#1115-wizard-component-not-recognized

fix: made wizard component working
parents 37c8eb37 451d1637
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
import { NgModule } from '@angular/core';
import { CommonModule, JsonPipe } from '@angular/common';
import { HttpClient } from '@angular/common/http';
import { FormWizardModule } from '@ever-co/angular2-wizard';
import { FormWizardModule, WizardComponent } from '@ever-co/angular2-wizard';
import { ToasterModule } from 'angular2-toaster';
import { Ng2SmartTableModule } from 'ng2-smart-table';
import { ThemeModule } from '../../@theme';
@@ -42,7 +42,7 @@ import { WarehouseTrackModule } from './+warehouse-track/warehouse-track.module'
		NbButtonModule,
	],
	declarations: [WarehousesComponent],
	entryComponents: [],
	entryComponents: [WizardComponent],
	providers: [JsonPipe],
})
export class WarehousesModule {}