Browse Source

Another build fix.

pull/387/head
Sebastian Stehle 7 years ago
parent
commit
f59d1e5c0e
  1. 3
      src/Squidex/app/shared/components/geolocation-editor.component.ts

3
src/Squidex/app/shared/components/geolocation-editor.component.ts

@ -41,11 +41,12 @@ interface Snapshot {
changeDetection: ChangeDetectionStrategy.OnPush
})
export class GeolocationEditorComponent extends StatefulControlComponent<Snapshot, Geolocation> 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;
}

Loading…
Cancel
Save