Set openlpService to public in stage js to make typescript happy

This commit is contained in:
Daniel 2021-03-02 19:50:29 +13:00
parent 145329f65f
commit 36ca78ecc7
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}