Fix: Prevent clicking on links in reply / channel header.

Jump to existing message if exists.
This commit is contained in:
Paul
2021-07-09 10:15:32 +01:00
parent be87739473
commit 72baac442e
3 changed files with 18 additions and 1 deletions

View File

@@ -45,10 +45,13 @@ export const ReplyBase = styled.div<{
.content {
gap: 4px;
display: flex;
cursor: pointer;
align-items: center;
flex-direction: row;
cursor: pointer;
> * {
pointer-events: none;
}
}
> svg:first-child {