fix wrong label ids in options view

- allowed setting wrong field
This commit is contained in:
Christoph Kluge
2025-02-05 12:58:51 +01:00
parent 42b9de8360
commit f2e85306ca
2 changed files with 5 additions and 5 deletions

View File

@@ -109,7 +109,7 @@
<input type="hidden" name="key" value="job_list_usePaging" />
<div class="mb-3">
<div>
{#if config.job_list_usePaging}
{#if config?.job_list_usePaging}
<input type="radio" id="true-checked" name="value" value="true" checked />
{:else}
<input type="radio" id="true" name="value" value="true" />
@@ -117,7 +117,7 @@
<label for="true">Paging with selectable count of jobs.</label>
</div>
<div>
{#if config.job_list_usePaging}
{#if config?.job_list_usePaging}
<input type="radio" id="false" name="value" value="false" />
{:else}
<input type="radio" id="false-checked" name="value" value="false" checked />