Go to a folder when searched (#68) (#152)

 Go to a folder when searched (#68)
This commit is contained in:
Aymeric
2023-07-26 10:34:01 +02:00
committed by GitHub
parent fa4544be9c
commit e6b2d53dd6
5 changed files with 37 additions and 26 deletions
@@ -9,7 +9,7 @@ export default () => {
return (
<Modal open={open} onClose={() => setOpen(false)} className="sm:w-[80vw] sm:max-w-4xl">
<SearchBox />
<SearchBox/>
</Modal>
);
};
@@ -18,7 +18,7 @@ const SearchBox = () => {
return (
<ModalContent textCenter title={Languages.t('components.searchpopup.header_title')}>
<SearchInput />
<SearchResultsIndex />
<SearchResultsIndex/>
</ModalContent>
);
};