This commit is contained in:
Peter Maquiran
2023-05-19 15:02:02 +01:00
parent 2def687fa3
commit 181a9dbd76
3 changed files with 16 additions and 8 deletions
+9 -2
View File
@@ -196,8 +196,15 @@ export class EventsPage implements OnInit {
if(Array.isArray(events)) {
this.listToPresent = events
this.totalEvent = this.listToPresent.length
this.currentEvent = this.listToPresent[0].Subject
this.currentHoursMinutes = this.listToPresent[0].StartDate
try {
this.currentEvent = this.listToPresent[0].Subject
} catch (error) {}
try {
this.currentHoursMinutes = this.listToPresent[0].StartDate
} catch (error) {}
}
//
})
+1
View File
@@ -14,6 +14,7 @@ ion-content{
width: 100vw;
height: 100vh;
overflow: auto;
position: absolute;
}
.wrapper{