From 9c60f8a379fffea4574c86799c886aee37dd9968 Mon Sep 17 00:00:00 2001 From: tykayn Date: Sun, 7 Jun 2020 14:15:20 +0200 Subject: [PATCH] add feedback button, load administration module from app module --- src/app/app.component.html | 1 + src/app/app.module.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/app.component.html b/src/app/app.component.html index 422dce62..acb5e667 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -5,6 +5,7 @@ + diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 020415da..71defe54 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -20,9 +20,9 @@ import { environment } from '../environments/environment'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { CoreModule } from './core/core.module'; -import { OldStuffModule } from './features/old-stuff/old-stuff.module'; import { SharedModule } from './shared/shared.module'; import { ParticipationModule } from './features/participation/participation.module'; +import { AdministrationModule } from './features/administration/administration.module'; export class MyMissingTranslationHandler implements MissingTranslationHandler { public handle(params: MissingTranslationHandlerParams): string { @@ -38,6 +38,7 @@ export function HttpLoaderFactory(http: HttpClient): TranslateHttpLoader { declarations: [AppComponent], imports: [ AppRoutingModule, + AdministrationModule, BrowserAnimationsModule, BrowserModule, ClipboardModule,