From e0a5d4860a8b5c6f4be70414a83613b6509b8a78 Mon Sep 17 00:00:00 2001 From: enkeii64 Date: Thu, 17 Jul 2025 00:06:22 +1000 Subject: [PATCH] fix(ui): add tooltipText prop to PlusButton --- apps/web/src/components/ui/draggable-item.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/apps/web/src/components/ui/draggable-item.tsx b/apps/web/src/components/ui/draggable-item.tsx index c1f81e16..6e1e4990 100644 --- a/apps/web/src/components/ui/draggable-item.tsx +++ b/apps/web/src/components/ui/draggable-item.tsx @@ -149,7 +149,15 @@ export function DraggableMediaItem({ ); } -function PlusButton({ className, onClick }: { className?: string; onClick?: () => void }) { +function PlusButton({ + className, + onClick, + tooltipText, +}: { + className?: string; + onClick?: () => void; + tooltipText?: string; +}) { return (