Skip to content

Commit db90c1e

Browse files
committed
Fix bugs
1 parent 530fcd1 commit db90c1e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

client/src/app/shelters/add-shelter/add-shelter.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import * as $ from 'jquery';
1414
})
1515
export class AddShelterComponent implements AfterViewInit {
1616
mapboxAccessToken = environment.mapboxAccessToken;
17-
shelter = new Shelter('', '', '', '', '', '', '', null, null, null, false, null, null, null, null);
17+
shelter = new Shelter('', '', '', '', '', '', '', null, null, null, false, null, null, null, null, '');
1818

1919
shelterDetailsTab = 0;
2020

client/src/app/shelters/shelter.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export class Shelter {
1414
public lastUpdated: Date,
1515
public family: string,
1616
public familyAgeMin: number,
17-
public familyAgeMax: number
17+
public familyAgeMax: number,
18+
public _id: string
1819
) { }
1920
}

0 commit comments

Comments
 (0)