We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2aa224 commit 094c64eCopy full SHA for 094c64e
frontend-next-migration/src/shared/ui/v2/Chatbot/utils/linkify.ts
@@ -29,6 +29,6 @@ export function linkify(text: string): string {
29
const hrefRaw = url.startsWith('www.') ? `https://${url}` : url;
30
const href = encodeURI(hrefRaw).replace(/"/g, '"');
31
32
- return `<a href="${href}" target="_blank" rel="noopener noreferrer" style="color:#121212; text-decoration:underline;">${url}</a>${escapeHtml(trailing)}`;
+ return `<a href="${href}" target="_blank" rel="noopener noreferrer" style="color:#ffa100; text-decoration:none;">${url}</a>${escapeHtml(trailing)}`;
33
});
34
}
0 commit comments