From f59d1e5c0e9d24aa5c2bae851daeca0836cffce7 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Fri, 12 Jul 2019 14:36:12 +0200 Subject: [PATCH] Another build fix. --- .../app/shared/components/geolocation-editor.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Squidex/app/shared/components/geolocation-editor.component.ts b/src/Squidex/app/shared/components/geolocation-editor.component.ts index 6ee573110..18ffd31db 100644 --- a/src/Squidex/app/shared/components/geolocation-editor.component.ts +++ b/src/Squidex/app/shared/components/geolocation-editor.component.ts @@ -41,11 +41,12 @@ interface Snapshot { changeDetection: ChangeDetectionStrategy.OnPush }) export class GeolocationEditorComponent extends StatefulControlComponent implements AfterViewInit { - private readonly isGoogleMaps: boolean; private marker: any; private map: any; private value: Geolocation | null = null; + public readonly isGoogleMaps: boolean; + public get hasValue() { return !!this.value; }