Fix ghost notifications on closed DMs.

Fix link warning not closing on open.
This commit is contained in:
Paul
2021-08-30 13:26:19 +01:00
parent c7eb1f21bf
commit 13e0fc86b0
2 changed files with 7 additions and 3 deletions

View File

@@ -15,7 +15,10 @@ export function ExternalLinkModal({ onClose, link }: Props) {
title={<Text id={"app.special.modals.external_links.title"} />}
actions={[
{
onClick: ()=>{window.open(link, "_blank");},
onClick: () => {
window.open(link, "_blank");
onClose();
},
confirmation: true,
contrast: true,
accent: true,