Affichage de la voile principale sur la sélection

du piège
This commit is contained in:
Sébastien André
2021-05-02 12:52:09 +02:00
parent 97e6153cef
commit 6bc87611e3
2 changed files with 8 additions and 5 deletions

View File

@@ -181,9 +181,12 @@ export class NewJumpComponent implements OnInit {
this.isSpecial = false;
}
public displayFn(data?: JumpTypeResp): string | undefined {
public displayNameFn(data?: any): string | undefined {
return data ? data.name : undefined;
}
public displayGearFn(data?: GearResp): string | undefined {
return data ? `${data.name} (${data.mainCanopy})` : undefined;
}
public onChangeDz(event: any) {
let filterValue: string;