From e1709dcef56a8f4e83315afc47253c866519a670 Mon Sep 17 00:00:00 2001 From: Chris Veilleux Date: Tue, 9 Oct 2018 17:01:49 -0500 Subject: [PATCH] changed to use the correct flex library --- login/frontend/v1/login-ui/src/app/app.module.ts | 4 ++-- login/frontend/v1/login-ui/src/app/auth/auth.module.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/login/frontend/v1/login-ui/src/app/app.module.ts b/login/frontend/v1/login-ui/src/app/app.module.ts index f38b5c15..f9ba7c1a 100644 --- a/login/frontend/v1/login-ui/src/app/app.module.ts +++ b/login/frontend/v1/login-ui/src/app/app.module.ts @@ -1,6 +1,6 @@ import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; -import { FlexModule } from "@angular/flex-layout"; +import { FlexLayoutModule } from "@angular/flex-layout"; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; @@ -12,7 +12,7 @@ import { AuthModule } from "./auth/auth.module"; BrowserModule, AuthModule, BrowserAnimationsModule, - FlexModule, + FlexLayoutModule ], providers: [ ], bootstrap: [ AppComponent ] diff --git a/login/frontend/v1/login-ui/src/app/auth/auth.module.ts b/login/frontend/v1/login-ui/src/app/auth/auth.module.ts index c939fcc1..5739ccbf 100644 --- a/login/frontend/v1/login-ui/src/app/auth/auth.module.ts +++ b/login/frontend/v1/login-ui/src/app/auth/auth.module.ts @@ -1,7 +1,7 @@ import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from "@angular/forms"; -import { FlexModule } from "@angular/flex-layout"; +import { FlexLayoutModule } from "@angular/flex-layout"; import { HttpClientModule } from "@angular/common/http"; import { MatButtonModule, @@ -24,7 +24,7 @@ import { AuthAntisocialComponent } from './auth-antisocial/auth-antisocial.compo exports: [ AuthComponent ], imports: [ CommonModule, - FlexModule, + FlexLayoutModule, FontAwesomeModule, FormsModule, HttpClientModule,