Merge branch '103-frontend-crashes-if-something-is-null' into 'master'

Resolve "Frontend crashes if something is null"

Closes #103

See merge request marcel.schwarz/2020ss-qbc-geofence-timetracking!80
This commit is contained in:
Tim Zieger 2020-05-29 08:23:06 +00:00
commit f509ad0d9a

View File

@ -113,11 +113,16 @@ export default {
start = start.split("T"); start = start.split("T");
records[index].startdate = start[1]; records[index].startdate = start[1];
records[index].date = start[0]; records[index].date = start[0];
try{
var end = record.enddate; var end = record.enddate;
end = end.split("T"); end = end.split("T");
records[index].enddate = end[1]; records[index].enddate = end[1];
}catch(e){
records[index].enddate = "pending";
}
} }
this.timeRecords = records; this.timeRecords = records;