base end tag

This commit is contained in:
Endrit 2022-04-06 12:43:05 +02:00
parent a74627ed16
commit 7c9e7fea1d

View File

@ -63,7 +63,7 @@ export const NavigatorSearchResultItemInfoView: FC<NavigatorSearchResultItemInfo
return (
<>
<Base pointer className="icon icon-navigator-info" onMouseOver={ toggle } onMouseLeave={ toggle }/>
<Base pointer className="icon icon-navigator-info" onMouseOver={ toggle } onMouseLeave={ toggle }>
<Overlay show={ isVisible } target={ target } placement="right">
<Popover>
<NitroCardContentView overflow="hidden" className="room-info bg-transparent">
@ -99,6 +99,7 @@ export const NavigatorSearchResultItemInfoView: FC<NavigatorSearchResultItemInfo
</NitroCardContentView>
</Popover>
</Overlay>
</Base>
</>
);
}