Skip to content

Commit

Permalink
fix: UILD-454: adjust tabIndex for MARC preview sections (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
s3fs authored Dec 19, 2024
1 parent 89c68f7 commit 06ae48f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const MarcPreviewComplexLookup: FC<MarcPreviewComplexLookupProps> = ({ on
</Button>
</div>
</SearchControlPane>
<div className="marc-preview-content" tabIndex={0}>
<div className="marc-preview-content">
<div className="marc-preview-content-title">
<FormattedMessage id="ld.marcAuthorityRecord" />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/MarcContent/MarcContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const MarcContent: FC<MarcContent> = ({ marc, ...rest }) => {
const parsedContent = marc?.parsedRecord?.content;

return (
<section {...rest}>
<section tabIndex={0} {...rest}>{/* NOSONAR */}
<table>
<tbody>
<tr>
Expand Down

0 comments on commit 06ae48f

Please sign in to comment.