From e73336c00e126050ddff8f87bc2ae48fa0569205 Mon Sep 17 00:00:00 2001 From: Tykayn Date: Thu, 9 Sep 2021 21:14:41 +0200 Subject: [PATCH] fix public access to storageservice in template for detailed component --- .../poll-results-detailed/poll-results-detailed.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/features/consultation/poll-results-detailed/poll-results-detailed.component.ts b/src/app/features/consultation/poll-results-detailed/poll-results-detailed.component.ts index e63fbad4..6b780f13 100644 --- a/src/app/features/consultation/poll-results-detailed/poll-results-detailed.component.ts +++ b/src/app/features/consultation/poll-results-detailed/poll-results-detailed.component.ts @@ -16,7 +16,7 @@ export class PollResultsDetailedComponent { constructor( private pollService: PollService, - private storageService: StorageService, + public storageService: StorageService, private api: ApiService, private toastService: ToastService ) {}