diff --git a/apps/web/src/components/NewAutomationModal.tsx b/apps/web/src/components/NewAutomationModal.tsx index 0f345319c..4e52e2d12 100644 --- a/apps/web/src/components/NewAutomationModal.tsx +++ b/apps/web/src/components/NewAutomationModal.tsx @@ -818,6 +818,7 @@ export function NewAutomationModal({ setPopover(null); }} label={p.name} + title={p.name} /> ))} @@ -1018,17 +1019,24 @@ function PopoverItem({ label, hint, onClick, + title, }: { selected?: boolean; label: string; hint?: string; onClick: () => void; + // Native hover tooltip surfaced when the visible label is truncated to + // ellipsis (e.g. long project names in the picker, #3274). Optional so + // unchanged call sites with short fixed labels don't grow a noisy + // duplicate tooltip. + title?: string; }) { return (