Merge branch 'fix_openlp_service_scope_for_stages' into 'master'

Fix typescript build error

See merge request openlp/web-remote!34
This commit is contained in:
Tim Bentley 2021-03-02 07:45:19 +00:00
commit cdf03beb45

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