From c506845a382b53c0f00320d376325de4c1fcf8ea Mon Sep 17 00:00:00 2001 From: Albert Gasset Date: Mon, 18 Jun 2018 17:10:20 +0200 Subject: [PATCH] MOBILE-2431 login: Fix forgotten password page --- .../login/pages/forgotten-password/forgotten-password.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/login/pages/forgotten-password/forgotten-password.module.ts b/src/core/login/pages/forgotten-password/forgotten-password.module.ts index 0df3a92da..050a769f8 100644 --- a/src/core/login/pages/forgotten-password/forgotten-password.module.ts +++ b/src/core/login/pages/forgotten-password/forgotten-password.module.ts @@ -14,6 +14,7 @@ import { NgModule } from '@angular/core'; import { IonicPageModule } from 'ionic-angular'; +import { CoreDirectivesModule } from '@directives/directives.module'; import { CoreLoginForgottenPasswordPage } from './forgotten-password'; import { TranslateModule } from '@ngx-translate/core'; @@ -22,6 +23,7 @@ import { TranslateModule } from '@ngx-translate/core'; CoreLoginForgottenPasswordPage ], imports: [ + CoreDirectivesModule, IonicPageModule.forChild(CoreLoginForgottenPasswordPage), TranslateModule.forChild() ]