Skip to content

Commit 0575ba9

Browse files
authored
fix(client): fix aria-hidden attribute of OutboundLink (close vuepress#427) (vuepress#432)
1 parent 05246d1 commit 0575ba9

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

packages/@vuepress/client/src/components/OutboundLink.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ import './OutboundLink.css'
55
const svg = h(
66
'svg',
77
{
8-
class: 'icon outbound',
9-
xmlns: 'http://www.w3.org/2000/svg',
10-
ariaHidden: 'true',
11-
focusable: 'false',
12-
x: '0px',
13-
y: '0px',
14-
viewBox: '0 0 100 100',
15-
width: '15',
16-
height: '15',
8+
'class': 'icon outbound',
9+
'xmlns': 'http://www.w3.org/2000/svg',
10+
'aria-hidden': 'true',
11+
'focusable': 'false',
12+
'x': '0px',
13+
'y': '0px',
14+
'viewBox': '0 0 100 100',
15+
'width': '15',
16+
'height': '15',
1717
},
1818
[
1919
h('path', {

0 commit comments

Comments
 (0)