From 36ca78ecc7cf857d937585aa74f93f4e568317fb Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 2 Mar 2021 19:50:29 +1300 Subject: [PATCH] Set openlpService to public in stage js to make typescript happy --- src/app/components/stage-view/stage-view.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/stage-view/stage-view.component.ts b/src/app/components/stage-view/stage-view.component.ts index 395289a..17a073c 100644 --- a/src/app/components/stage-view/stage-view.component.ts +++ b/src/app/components/stage-view/stage-view.component.ts @@ -20,7 +20,7 @@ export class StageViewComponent implements OnInit { tags: Tag[] = []; time = new Date(); - constructor(private openlpService: OpenLPService) { + constructor(public openlpService: OpenLPService) { setInterval(() => this.time = new Date(), 1000); }