mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
Merge branch 'dev'
This commit is contained in:
commit
5269f23720
1 changed files with 3 additions and 2 deletions
5
ui/src/components/navbar.tsx
vendored
5
ui/src/components/navbar.tsx
vendored
|
@ -375,12 +375,13 @@ export class Navbar extends Component<any, NavbarState> {
|
||||||
let link = isCommentType(reply)
|
let link = isCommentType(reply)
|
||||||
? `/post/${reply.post_id}/comment/${reply.id}`
|
? `/post/${reply.post_id}/comment/${reply.id}`
|
||||||
: `/inbox`;
|
: `/inbox`;
|
||||||
let body = md.render(reply.content);
|
let htmlBody = md.render(reply.content);
|
||||||
|
let body = reply.content; // Unfortunately the notifications API can't do html
|
||||||
|
|
||||||
messageToastify(
|
messageToastify(
|
||||||
creator_name,
|
creator_name,
|
||||||
creator_avatar,
|
creator_avatar,
|
||||||
body,
|
htmlBody,
|
||||||
link,
|
link,
|
||||||
this.context.router
|
this.context.router
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue