Message list: Underline link "migrated to/from another chat" (#2034)

This commit is contained in:
Alexander Zinchuk 2022-09-14 00:30:08 +02:00
parent 79b3a8c786
commit cc6d945678
2 changed files with 5 additions and 1 deletions

View File

@ -221,7 +221,7 @@ function renderMigratedContent(chatId: string, noLinks?: boolean): string | Text
return text;
}
return <ChatLink className="action-link" chatId={chatId}>{text}</ChatLink>;
return <ChatLink className="action-link underlined-link" chatId={chatId}>{text}</ChatLink>;
}
function processPlaceholder(text: string, placeholder: string, replaceValue?: TextPart | TextPart[]): TextPart[] {

View File

@ -349,6 +349,10 @@
text-decoration: underline;
}
}
.underlined-link {
text-decoration: underline;
}
}
.sticky-date + .ActionMessage {