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]);
|
}, [forceTranslate]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div class="status-translation-block">
|
<div
|
||||||
|
class="status-translation-block"
|
||||||
|
onClick={(e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
}}
|
||||||
|
>
|
||||||
<details ref={detailsRef}>
|
<details ref={detailsRef}>
|
||||||
<summary>
|
<summary>
|
||||||
<button
|
<button
|
||||||
|
|
Loading…
Add table
Reference in a new issue