Skip to content

Commit

Permalink
Fix ref type
Browse files Browse the repository at this point in the history
  • Loading branch information
ciampo committed Sep 5, 2024
1 parent 16f7bd8 commit c82a92d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dataviews/src/dataviews-layouts/list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function ListItem< Item >( {
visibleFields,
onDropdownTriggerKeyDown,
}: ListViewItemProps< Item > ) {
const itemRef = useRef< HTMLElement >( null );
const itemRef = useRef< HTMLDivElement >( null );
const labelId = `${ idPrefix }-label`;
const descriptionId = `${ idPrefix }-description`;

Expand Down

0 comments on commit c82a92d

Please sign in to comment.