Skip to content

Commit

Permalink
fix(vfg): aria-labelledby in array fields [KHCP-11026]
Browse files Browse the repository at this point in the history
  • Loading branch information
portikM committed Mar 20, 2024
1 parent bfb6fac commit d9f5675
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
>
<FieldTextArea
v-if=" schema.inputAttributes?.type === 'textarea'"
:aria-labelledby="getLabelId(schema)"
class="k-input"
:form-options="formOptions"
:model="item"
Expand All @@ -53,6 +54,7 @@
<input
v-else
v-model="value[index]"
:aria-labelledby="getLabelId(schema)"
v-bind="schema.inputAttributes"
:type="schema.inputAttributes?.type || 'text'"
>
Expand All @@ -68,6 +70,7 @@
v-else
v-bind="schema.inputAttributes"
v-model="value[index]"
:aria-labelledby="getLabelId(schema)"
type="text"
>
<input
Expand Down

0 comments on commit d9f5675

Please sign in to comment.