add hashtag before rendered channel names

This commit is contained in:
Riku Rouvila
2020-09-23 21:27:02 +03:00
parent 2316bdbea7
commit 5a334f0ae5

View File

@@ -22,7 +22,7 @@ const slackMarkdownRenderer = (text: { value: string }) => {
if (matches) {
return (
<a href={`https://app.slack.com/client/T03BQ3NU9/${matches[1]}`}>
{matches[2]}
#{matches[2]}
</a>
);
}