mirror of
https://github.com/imputnet/cobalt.git
synced 2025-01-16 11:55:21 +00:00
web/debug: show page content only when debug mode is enabled
This commit is contained in:
parent
6c7695ca6c
commit
936da1c9ab
|
@ -1,9 +1,20 @@
|
|||
<script lang="ts">
|
||||
import { device, app } from "$lib/device";
|
||||
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>
|
||||
|
||||
<div id="advanced-page">
|
||||
{#if $settings.advanced.debug}
|
||||
<div id="advanced-page">
|
||||
device:
|
||||
<div class="message-container subtext">
|
||||
is.iPad: {device.is.iPad}
|
||||
|
@ -26,14 +37,15 @@
|
|||
branch: {version.branch}
|
||||
remote: {version.remote}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<style>
|
||||
#advanced-page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: var(--padding);
|
||||
gap: var(--padding)
|
||||
gap: var(--padding);
|
||||
}
|
||||
|
||||
.message-container {
|
||||
|
|
Loading…
Reference in a new issue