1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 02:12:38 +01:00

fix message context menu id icon

This commit is contained in:
Puyodead1 2023-12-19 12:01:11 -05:00
parent aef02c6e99
commit 673138d1b6
No known key found for this signature in database
GPG Key ID: BA5F91AAEF68E5CE

View File

@ -44,8 +44,18 @@ function MessageContextMenu({ message }: MenuProps) {
</ContextMenuButton>
)}
<ContextMenuDivider />
<ContextMenuButton icon="mdiIdentifier" onClick={copyId}>
Copy ID
<ContextMenuButton
icon="mdiIdentifier"
onClick={copyId}
iconProps={{
style: {
filter: "invert(100%)",
background: "black",
borderRadius: "4px",
},
}}
>
Copy Message ID
</ContextMenuButton>
</ContextMenu>
);