diff options
Diffstat (limited to 'src/Api')
-rw-r--r-- | src/Api/types.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Api/types.ts b/src/Api/types.ts index 7a26bc8..5543f79 100644 --- a/src/Api/types.ts +++ b/src/Api/types.ts @@ -2,6 +2,7 @@ import { LatLng } from "./interfaces"; export class Portal { fullLoad: boolean + address: string constructor( public name: string, public photo: string, @@ -17,6 +18,7 @@ export class Portal { public owner: string ) { + this.address = "" this.fullLoad = false } } |