mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 17:38:07 +01:00
Fix collapse icon opening the post (#2899)
This commit is contained in:
parent
3136079d3a
commit
e8c108d270
1 changed files with 1 additions and 0 deletions
|
@ -19,6 +19,7 @@ export const CollapseButton = ({ collapsed, setCollapsed }) => {
|
||||||
if (e.button === 0) {
|
if (e.button === 0) {
|
||||||
setCollapsed(!collapsed);
|
setCollapsed(!collapsed);
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
}
|
}
|
||||||
}, [collapsed, setCollapsed]);
|
}, [collapsed, setCollapsed]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue