Skip to content

Commit

Permalink
fix: review change for opacity
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikmv committed Jul 31, 2024
1 parent 3259138 commit 60ae38e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const DragDropListItem = ({ id, index, text, visible, handleToggle, moveL

drag(drop(ref));

const opacity = isDragging ? 0.5 : 1;
const opacity = isDragging ? 0 : 1;

return (
<DataTableRow ref={ref} style={{ opacity }} draggable>
Expand Down

0 comments on commit 60ae38e

Please sign in to comment.