Fix: minimap takes to much space
This commit is contained in:
parent
9e10bf421f
commit
037c593f61
2 changed files with 4 additions and 2 deletions
|
@ -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%;
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue