mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
web/debug: show page content only when debug mode is enabled
This commit is contained in:
parent
6c7695ca6c
commit
936da1c9ab
1 changed files with 34 additions and 22 deletions
|
@ -1,8 +1,19 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { device, app } from "$lib/device";
|
import { device, app } from "$lib/device";
|
||||||
import { version } from "$lib/version";
|
import { version } from "$lib/version";
|
||||||
|
import settings from "$lib/settings";
|
||||||
|
|
||||||
|
import { goto } from "$app/navigation";
|
||||||
|
import { defaultSettingsPage } from "$lib/settings/defaults";
|
||||||
|
|
||||||
|
$: {
|
||||||
|
if (!$settings.advanced.debug) {
|
||||||
|
goto(defaultSettingsPage(), { replaceState: true });
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
{#if $settings.advanced.debug}
|
||||||
<div id="advanced-page">
|
<div id="advanced-page">
|
||||||
device:
|
device:
|
||||||
<div class="message-container subtext">
|
<div class="message-container subtext">
|
||||||
|
@ -27,13 +38,14 @@
|
||||||
remote: {version.remote}
|
remote: {version.remote}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
{/if}
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
#advanced-page {
|
#advanced-page {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: var(--padding);
|
padding: var(--padding);
|
||||||
gap: var(--padding)
|
gap: var(--padding);
|
||||||
}
|
}
|
||||||
|
|
||||||
.message-container {
|
.message-container {
|
||||||
|
|
Loading…
Reference in a new issue