Skip to content

Commit 0bc789d

Browse files
committed
Fix tabIndex type errors
1 parent 63f55bc commit 0bc789d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

  • webviews/createPullRequestViewNew

webviews/createPullRequestViewNew/app.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ export function main() {
142142
<div className='group-additions'>
143143
<div className='assignees'>
144144
<span title='Assignees'>{assigneeIcon}</span>
145-
<ul aria-label='Assignees' tabIndex='0'>
146-
<li>deepak1556</li>
145+
<ul aria-label='Assignees' tabIndex={0}>
146+
<li>deepak1556</li>
147147
<li>hbons</li>
148148
<li>alexr00</li>
149149
<li>deepak1556</li>
@@ -156,7 +156,7 @@ export function main() {
156156
</div>
157157
<div className='reviewers'>
158158
<span title='Reviewers'>{reviewerIcon}</span>
159-
<ul aria-label='Reviewers' tabIndex='0'>
159+
<ul aria-label='Reviewers' tabIndex={0}>
160160
<li>alexr00</li>
161161
<li>deepak1556</li>
162162
<li>hbons</li>
@@ -169,7 +169,7 @@ export function main() {
169169
</div>
170170
<div className='labels'>
171171
<span title='Labels'>{labelIcon}</span>
172-
<ul aria-label='Labels' tabIndex='0'>
172+
<ul aria-label='Labels' tabIndex={0}>
173173
<li>ux</li>
174174
<li>design</li>
175175
<li>docs</li>
@@ -184,7 +184,7 @@ export function main() {
184184
</div>
185185
<div className='milestone'>
186186
<span title='Milestone'>{milestoneIcon}</span>
187-
<ul aria-label='Milestone' tabIndex='0'>
187+
<ul aria-label='Milestone' tabIndex={0}>
188188
<li>January 2024</li>
189189
</ul>
190190
</div>

0 commit comments

Comments
 (0)