mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-08-10 06:07:54 +02:00
Add the Preferred icon collection user preference
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user