mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 18:08:06 +01:00
Fix clicking the audio player also opening toots in detailed view
This commit is contained in:
parent
0fe5deae89
commit
d42a23fdbe
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ export default class StatusContent extends React.PureComponent {
|
||||||
|
|
||||||
let element = e.target;
|
let element = e.target;
|
||||||
while (element) {
|
while (element) {
|
||||||
if (['button', 'video', 'a', 'label', 'wave'].includes(element.localName)) {
|
if (['button', 'video', 'a', 'label', 'canvas'].includes(element.localName)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
element = element.parentNode;
|
element = element.parentNode;
|
||||||
|
|
Loading…
Reference in a new issue