feat: pointer cursor for boards and deals
This commit is contained in:
@ -4,7 +4,6 @@ import DealCard from "@/app/deals/components/DealCard/DealCard";
|
||||
import { DealSchema } from "@/client";
|
||||
import { SortableItem } from "@/components/SortableDnd/SortableItem";
|
||||
|
||||
|
||||
type Props = {
|
||||
deal: DealSchema;
|
||||
};
|
||||
@ -14,7 +13,11 @@ const DealContainer: FC<Props> = ({ deal }) => {
|
||||
|
||||
return (
|
||||
<Box>
|
||||
<SortableItem id={deal.id}>{dealBody}</SortableItem>
|
||||
<SortableItem
|
||||
dragHandleStyle={{ cursor: "pointer" }}
|
||||
id={deal.id}>
|
||||
{dealBody}
|
||||
</SortableItem>
|
||||
</Box>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user