in app/columns.tsx [200:227]
function experimenterLinkTooltip(
link: string,
hasMicrosurvey: boolean,
id: string,
userFacingName?: string,
) {
return (
<TooltipProvider>
<Tooltip>
<TooltipTrigger asChild>
<a
href={link}
className="font-semibold text-sm flex flex-row items-center gap-x-1 text-primary visited:text-inherit hover:text-blue-800 no-underline whitespace-nowrap"
target="_blank"
rel="noreferrer"
>
{hasMicrosurvey && <> {microsurveyBadge} </>}
{userFacingName || id}
<SquareArrowOutUpRight size={13} className="overflow-visible" />
</a>
</TooltipTrigger>
<TooltipContent>
<p>Go to Experimenter page</p>
</TooltipContent>
</Tooltip>
</TooltipProvider>
);
}