Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/client/components/markdown/plugins/anchors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export function RenderAnchor(
disabled={localProps.disabled}
href={internalUrl()}
>
<Symbol>tag</Symbol>
<Symbol>{channel()!.isVoice ? "headset_mic" : "tag"}</Symbol>
{channel()!.name}
{params.exactMessage && (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ class ChannelMentionWidget extends WidgetType {
mention.contentEditable = "false";

const icon = document.createElement("span");
icon.innerText = "tag";
icon.innerText = this.channel.isVoice ? "headset_mic" : "tag";
icon.classList.add("material-symbols-outlined");
mention.appendChild(icon);

Expand Down