diff --git a/ts/deckoptions/CheckBox.svelte b/ts/deckoptions/CheckBox.svelte index c4e6638af..22b584719 100644 --- a/ts/deckoptions/CheckBox.svelte +++ b/ts/deckoptions/CheckBox.svelte @@ -4,13 +4,11 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html --> -
- -
+
diff --git a/ts/deckoptions/ConfigEntry.svelte b/ts/deckoptions/ConfigEntry.svelte index e8d7a64b2..2ad682703 100644 --- a/ts/deckoptions/ConfigEntry.svelte +++ b/ts/deckoptions/ConfigEntry.svelte @@ -8,7 +8,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html import HelpPopup from "./HelpPopup.svelte"; export let label: string; - export let subLabel = ""; + export let tooltip = ""; export let value: any; export let defaultValue: any; /// empty strings will be ignored @@ -58,8 +58,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
{label} - {#if subLabel} - + {#if tooltip} + {/if}
diff --git a/ts/deckoptions/DailyLimits.svelte b/ts/deckoptions/DailyLimits.svelte index e9ce7fb73..3116d5b12 100644 --- a/ts/deckoptions/DailyLimits.svelte +++ b/ts/deckoptions/DailyLimits.svelte @@ -38,7 +38,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html - + diff --git a/ts/deckoptions/SpinBoxFloat.svelte b/ts/deckoptions/SpinBoxFloat.svelte index b7a550ef1..34f4912a6 100644 --- a/ts/deckoptions/SpinBoxFloat.svelte +++ b/ts/deckoptions/SpinBoxFloat.svelte @@ -8,7 +8,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html import type { NumberValueEvent } from "./events"; export let label: string; - export let subLabel: string; + export let tooltip: string; export let value: number; export let defaultValue: number; export let min = 1; @@ -30,7 +30,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html } - +