Skip to content

Commit

Permalink
Prevent resize from accident sort
Browse files Browse the repository at this point in the history
  • Loading branch information
birm authored Jun 17, 2024
1 parent 3e60d4f commit dd1aade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/components/VisualTools/VisDataTable/VisDataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default class VisDataTable extends PureComponent {
position={{ x: 0 }}
zIndex={999}
>
<span className="DragHandleIcon"></span>
<span className="DragHandleIcon" onMouseDown={(event) => event.stopPropagation()}></span>

Check failure on line 155 in source/components/VisualTools/VisDataTable/VisDataTable.js

View workflow job for this annotation

GitHub Actions / Run npm lint

Avoid non-native interactive elements. If using native HTML is not possible, add an appropriate role and support for tabbing, mouse, keyboard, and touch inputs to an interactive content element
</Draggable>
</React.Fragment>
);
Expand Down

0 comments on commit dd1aade

Please sign in to comment.