Chores customize install #23
@@ -754,13 +754,29 @@
|
|||||||
</label>
|
</label>
|
||||||
<p class="muted">{t("settings.recording.auto_hint")}</p>
|
<p class="muted">{t("settings.recording.auto_hint")}</p>
|
||||||
|
|
||||||
|
<label class="row">
|
||||||
|
<input
|
||||||
|
type="checkbox"
|
||||||
|
checked={settings.settings.auto_start}
|
||||||
|
onchange={(e) => settings.setAutoStart((e.target as HTMLInputElement).checked)}
|
||||||
|
/>
|
||||||
|
<span>{t("settings.recording.autostart_label")}</span>
|
||||||
|
</label>
|
||||||
|
<p class="muted">{t("settings.recording.autostart_hint")}</p>
|
||||||
|
|
||||||
{#if showConsent}
|
{#if showConsent}
|
||||||
<ConsentNotice onAccept={acceptConsent} onCancel={() => (showConsent = false)} />
|
<ConsentNotice onAccept={acceptConsent} onCancel={() => (showConsent = false)} />
|
||||||
{/if}
|
{/if}
|
||||||
</section>
|
</section>
|
||||||
{:else if section === "hardware"}
|
{:else if section === "hardware"}
|
||||||
<section>
|
<section>
|
||||||
<h3>{t("settings.hardware.title")}</h3>
|
<div class="actions">
|
||||||
|
<h3>{t("settings.hardware.title")}</h3>
|
||||||
|
<button class="ghost" onclick={() => settings.loadHardware()}>
|
||||||
|
<RefreshCw size={14} aria-hidden="true" />
|
||||||
|
{t("settings.hardware.refresh")}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
{#if settings.hardware}
|
{#if settings.hardware}
|
||||||
<div class="row">
|
<div class="row">
|
||||||
{t("settings.hardware.active_backend")}<code>{settings.hardware.active}</code>
|
{t("settings.hardware.active_backend")}<code>{settings.hardware.active}</code>
|
||||||
|
|||||||
Reference in New Issue
Block a user