Fix: minimap takes to much space

This commit is contained in:
Pieter Vander Vennet 2023-07-16 19:37:11 +02:00
parent 9e10bf421f
commit 037c593f61
2 changed files with 4 additions and 2 deletions

View file

@ -64,7 +64,7 @@
</svelte:head>
<main>
<div bind:this={container} class="map" id="map" style=" position: absolute;
<div bind:this={container} class="map" id="map" style=" position: relative;
top: 0;
bottom: 0;
width: 100%;

View file

@ -27,7 +27,9 @@ export default class Locale {
let source: UIEventSource<string>
if (QueryParameters.wasInitialized("language") || Utils.runningFromConsole) {
console.log("Language was initialized via URL-parameter - using the URL parameter as store instead of local storage", QueryParameters.wasInitialized("language"))
if(!Utils.runningFromConsole){
console.debug("Language was initialized via URL-parameter - using the URL parameter as store instead of local storage", QueryParameters.wasInitialized("language"))
}
source = QueryParameters.GetQueryParameter(
"language",
undefined,