diff --git a/apps/client/src/widgets/view_widgets/geo_view/index.ts b/apps/client/src/widgets/view_widgets/geo_view/index.ts index 03f88e6fa..cb203c004 100644 --- a/apps/client/src/widgets/view_widgets/geo_view/index.ts +++ b/apps/client/src/widgets/view_widgets/geo_view/index.ts @@ -2,6 +2,14 @@ import ViewMode, { ViewModeArgs } from "../view_mode.js"; const TPL = /*html*/`
+ + Geo View is not implemented yet.
`; @@ -20,4 +28,8 @@ export default class GeoView extends ViewMode<{}> { return this.$root; } + get isFullHeight(): boolean { + return true; + } + }