Add the Preferred icon collection user preference

This commit is contained in:
Bubka
2025-06-05 13:03:08 +02:00
parent 8b745731e2
commit 9e3794a956
6 changed files with 29 additions and 2 deletions

View File

@ -56,9 +56,10 @@
:aria-invalid="fieldError != undefined"
:aria-errormessage="fieldError != undefined ? valErrorId : undefined"
>
<option v-for="option in options" :value="option.value">{{ $t(option.text) }}</option>
<option v-for="option in options" :key="option.value" :value="option.value">{{ $t(option.text) }}</option>
</select>
</div>
<slot></slot>
</div>
<FieldError v-if="fieldError != undefined" :error="fieldError" :field="fieldName" />
<p :id="legendId" class="help" v-html="$t(help)" v-if="help"></p>