mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-12-20 06:06:16 +01:00
fix wrong label ids in options view
- allowed setting wrong field
This commit is contained in:
@@ -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 />
|
||||
|
||||
Reference in New Issue
Block a user