This commit is contained in:
Sébastien André
2020-08-31 15:53:43 +02:00
parent 22f126861b
commit 9eb5195926
3 changed files with 2 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ export class NewJumpComponent implements OnInit {
this.selectedAircraft.id, this.selectedAircraft.id,
this.selectedDz.id, this.selectedDz.id,
this.selectedGear.id, this.selectedGear.id,
this.withCutaway, this.withCutaway === undefined ? false : this.withCutaway,
this.beginDate, this.beginDate,
this.endDate, this.endDate,
this.exitAltitude, this.exitAltitude,

View File

@@ -13,7 +13,7 @@
height: 100px; height: 100px;
// this way asset gets processed by webpack // this way asset gets processed by webpack
background: url(assets/img/logo.png) center center no-repeat; background: url(../img/logo.png) center center no-repeat;
background-size: 100px 100px; background-size: 100px 100px;
} }
} }

View File

@@ -99,8 +99,6 @@ export class JumpService extends BaseService {
jumpDate: jumpDate, jumpDate: jumpDate,
}; };
console.log(`${this.apiUrl}/Jump`);
this.http.post(`${this.apiUrl}/Jump`, bodyNewjump, { this.http.post(`${this.apiUrl}/Jump`, bodyNewjump, {
headers: this.headers, headers: this.headers,
}); });