Skip to content

Commit 34468c5

Browse files
committed
Fixing two typos which cleared fields
1 parent 7ac1a8f commit 34468c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/web/src/modules/AirplaneCrashes/models/AircrashModels.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ export class AircraftCrash {
2929

3030
this.militarycivilian = data.militarycivilian || '';
3131
this.nation = data.nation || '';
32-
this.otherlocationsofremains = '';
32+
this.otherlocationsofremains || '';
3333
this.photographs = data.photographs || '';
3434
this.pilotfirstname = data.pilotfirstname || '';
3535
this.pilotlastname = data.pilotlastname || '';
3636
this.pilot = this.pilotFullName() || '';
3737
this.pilotrank = data.pilotrank || '';
3838
this.remainsonsite = data.remainsonsite || '';
3939
this.significanceofaircraft = data.significanceofaircraft || '';
40-
this.soulsonboard = data.soulsonboard = '';
40+
this.soulsonboard = data.soulsonboard || '';
4141
this.infoSources = data.infoSources || [];
4242
this.yacsinumber = data.yacsinumber || undefined;
4343
this.datenote = data.datenote || '';

0 commit comments

Comments
 (0)