Get the jump type only for the tunnel

This commit is contained in:
Sébastien ANDRE
2023-08-22 18:26:49 +02:00
parent 5199f746c3
commit bf05e1c668
4 changed files with 37 additions and 27 deletions

View File

@@ -106,7 +106,7 @@ export class NewTunnelFlightComponent implements OnInit {
}
private getListOfJumpTypes() {
this.serviceJumpType.getListOfJumpTypes()
this.serviceJumpType.getListOfJumpTypesForTunnel()
.subscribe((data) => {
data.sort((a, b) => a.name.localeCompare(b.name));
this.listOfJumpType = data;