Capitalized all events texts at home, agenda and eevent-details

This commit is contained in:
Tiago Kayaya
2020-09-07 17:17:09 +01:00
parent 98132b27cf
commit e33cf1ff31
7 changed files with 33 additions and 23 deletions
@@ -14,7 +14,11 @@ export class AttachmentsPage implements OnInit {
loadedEventAttachments: Attachment[];
pageId: string;
constructor(private attachamentsService: AttachmentsService, private activatedRoute: ActivatedRoute, private iab: InAppBrowser, private route: Router) { }
constructor(
private attachamentsService: AttachmentsService,
private activatedRoute: ActivatedRoute,
private iab: InAppBrowser,
private route: Router) { }
ngOnInit() {
/* Emit new data when something changes */
@@ -43,8 +47,8 @@ export class AttachmentsPage implements OnInit {
}
navigateBack(){
console.log(this.pageId);
this.route.navigate(['/home/events',this.pageId]);
}
}