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:
stacksmash76 2023-09-10 19:26:30 +02:00 committed by GitHub
parent ac4892dd09
commit d63c704b17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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" />
<div className="fixed inset-y-0 right-0 max-w-full flex">