mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00
fix(web): slideover propagation bug (#1104)
fix: slideover propagation bug which was present when one added IRC networks and interacted with TextFields (the irc network would toggle itself)
This commit is contained in:
parent
ac4892dd09
commit
d63c704b17
1 changed files with 4 additions and 1 deletions
|
@ -71,7 +71,10 @@ function SlideOver<DataType>({
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div className="absolute inset-0 overflow-hidden">
|
<div className="absolute inset-0 overflow-hidden" onClick={(e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
|
}}>
|
||||||
<Dialog.Overlay className="absolute inset-0" />
|
<Dialog.Overlay className="absolute inset-0" />
|
||||||
|
|
||||||
<div className="fixed inset-y-0 right-0 max-w-full flex">
|
<div className="fixed inset-y-0 right-0 max-w-full flex">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue