From 363d5e38498a1146e081964e0e0ce15610d6762e Mon Sep 17 00:00:00 2001 From: George Nash Date: Wed, 3 Apr 2024 12:46:11 +0100 Subject: [PATCH] added CommonModule to shared module to fix ngForOf console error --- ui/src/app/shared/shared.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/app/shared/shared.module.ts b/ui/src/app/shared/shared.module.ts index e3c1cf79b..ce9678272 100644 --- a/ui/src/app/shared/shared.module.ts +++ b/ui/src/app/shared/shared.module.ts @@ -9,7 +9,7 @@ import { AlertComponent } from './alert/alert.component' import { LocalizePipe } from './pipe/localize' @NgModule({ - imports: [NgbModule, FontAwesomeModule], + imports: [NgbModule, FontAwesomeModule, CommonModule], declarations: [FindLanguageFromKeyPipe, LocalizePipe, ErrorAlertComponent, HasAnyAuthorityDirective, AlertComponent], exports: [ FindLanguageFromKeyPipe,