diff --git a/ui/src/ui/external-link.ts b/ui/src/ui/external-link.ts index fc7ff5ef7e2..0922da638d0 100644 --- a/ui/src/ui/external-link.ts +++ b/ui/src/ui/external-link.ts @@ -4,7 +4,7 @@ export const EXTERNAL_LINK_TARGET = "_blank"; export function buildExternalLinkRel(currentRel?: string): string { const extraTokens: string[] = []; - const seen = new Set(REQUIRED_EXTERNAL_REL_TOKENS); + const seen = new Set(REQUIRED_EXTERNAL_REL_TOKENS); for (const rawToken of (currentRel ?? "").split(/\s+/)) { const token = rawToken.trim().toLowerCase();