Skip to content

Commit 91f05ef

Browse files
author
Yinjie Wu
committed
Radio: fix an console error caused by using of an improper prop
fix "Blocked aria-hidden on a <inpit> element" problem by replacing "aria-hidden" prop with "role" prop
1 parent c345bb4 commit 91f05ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/radio/src/radio.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
class="el-radio__original"
2727
:value="label"
2828
type="radio"
29-
aria-hidden="true"
29+
role="presentation"
3030
v-model="model"
3131
@focus="focus = true"
3232
@blur="focus = false"

0 commit comments

Comments
 (0)