mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
* fix: popover does not close when clicking outside in SwitchSpace. (#720)
This commit is contained in:
parent
7121771f92
commit
ae842f94d0
@ -13,7 +13,7 @@ interface SwitchSpaceProps {
|
||||
|
||||
export function SwitchSpace({ spaceName, spaceSlug }: SwitchSpaceProps) {
|
||||
const navigate = useNavigate();
|
||||
const [opened, { close, open }] = useDisclosure(false);
|
||||
const [opened, { close, open, toggle }] = useDisclosure(false);
|
||||
|
||||
const handleSelect = (value: string) => {
|
||||
if (value) {
|
||||
@ -29,6 +29,7 @@ export function SwitchSpace({ spaceName, spaceSlug }: SwitchSpaceProps) {
|
||||
withArrow
|
||||
shadow="md"
|
||||
opened={opened}
|
||||
onChange={toggle}
|
||||
>
|
||||
<Popover.Target>
|
||||
<Button
|
||||
|
Loading…
x
Reference in New Issue
Block a user