improved css (at least tried to) and fixed bugs in management page

This commit is contained in:
grata
2023-05-01 14:36:36 +02:00
parent a68d48e065
commit 2a3aec6c95
6 changed files with 21 additions and 39 deletions

View File

@@ -73,21 +73,6 @@ export class ListComponent implements OnInit, OnChanges {
setTimeout(() => {
if (!this.positionCord) {
this.positionNotFound = true;
} else {
if (this.waypoints) {
if (!this.waypoints[0].distance) {
this.positionNotFound = true;
} else {
this.positionNotFound = false;
}
}
if (this.locations) {
if (!this.locations[0].distance) {
this.positionNotFound = true;
} else {
this.positionNotFound = false;
}
}
}
}, 5000);
}