Skip to content

Commit

Permalink
fix: updated icon alts (json-schema-org#723)
Browse files Browse the repository at this point in the history
Somehow all icons had an `alt` text of `eye icon` even if they were different icons.
  • Loading branch information
1p22geo authored May 30, 2024
1 parent cb26cf6 commit 233f41c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ export const DocsNav = ({
onClick={handleClickGet}
>
<div className='flex items-center align-middle'>
<img src={`${learn_icon}`} alt='eye icon' className='mr-2' />
<img src={`${learn_icon}`} alt='compass icon' className='mr-2' />
<SegmentHeadline label='Getting Started' />
</div>
<svg
Expand Down Expand Up @@ -434,7 +434,7 @@ export const DocsNav = ({
onClick={handleClickReference}
>
<div className='flex items-center align-middle'>
<img src={`${reference_icon}`} alt='eye icon' className='mr-2' />
<img src={`${reference_icon}`} alt='book icon' className='mr-2' />
<SegmentHeadline label='Reference' />
</div>
<svg
Expand Down Expand Up @@ -617,7 +617,7 @@ export const DocsNav = ({
onClick={handleClickSpec}
>
<div className='flex items-center align-middle'>
<img src={`${spec_icon}`} alt='eye icon' className='mr-2' />
<img src={`${spec_icon}`} alt='clipboard icon' className='mr-2' />
<SegmentHeadline label='Specification' />
</div>
<svg
Expand Down

0 comments on commit 233f41c

Please sign in to comment.