Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Germain 2021-07-27 17:14:39 +01:00 committed by GitHub
parent 30ce7b5eab
commit 7e453d7745
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ export default class ReplyTile extends React.PureComponent<IProps> {
const clickTarget = e.target as HTMLElement; const clickTarget = e.target as HTMLElement;
// Following a link within a reply should not dispatch the `view_room` action // Following a link within a reply should not dispatch the `view_room` action
// so that the browser can direct the user to the correct location // so that the browser can direct the user to the correct location
// The exceptionp being the link wrapping the reply // The exception being the link wrapping the reply
if (clickTarget.tagName.toLowerCase() !== "a" || clickTarget.closest("a") === null) { if (clickTarget.tagName.toLowerCase() !== "a" || clickTarget.closest("a") === null) {
// This allows the permalink to be opened in a new tab/window or copied as // This allows the permalink to be opened in a new tab/window or copied as
// matrix.to, but also for it to enable routing within Riot when clicked. // matrix.to, but also for it to enable routing within Riot when clicked.