mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-14 12:18:30 +03:00
Fix translation block not clickable when inside a status link
This commit is contained in:
parent
a79d26ae90
commit
b4177f0f76
1 changed files with 6 additions and 1 deletions
|
@ -87,7 +87,12 @@ function TranslationBlock({
|
|||
}, [forceTranslate]);
|
||||
|
||||
return (
|
||||
<div class="status-translation-block">
|
||||
<div
|
||||
class="status-translation-block"
|
||||
onClick={(e) => {
|
||||
e.preventDefault();
|
||||
}}
|
||||
>
|
||||
<details ref={detailsRef}>
|
||||
<summary>
|
||||
<button
|
||||
|
|
Loading…
Add table
Reference in a new issue