mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-23 20:00:15 +01:00
Hotfix (#334)
* style(NavLinks.jsx): add 'as="div"' to Menu.Item components refactor(Nav.jsx): remove unused code and add isMobile function to check if user is on mobile device * conditionally render menuitem with search --------- Co-authored-by: stunt_pilot <twitchstuntpilot@gmail.com>
This commit is contained in:
parent
a9444b66a1
commit
ab7cfc6041
2 changed files with 42 additions and 26 deletions
|
|
@ -69,10 +69,12 @@ export default function NavLinks({ clearSearch, isSearchEnabled }) {
|
|||
leaveTo="transform opacity-0 scale-95"
|
||||
>
|
||||
<Menu.Items className="absolute bottom-full left-0 z-20 mb-2 w-full translate-y-0 overflow-hidden rounded-md bg-[#050509] py-1.5 opacity-100 outline-none">
|
||||
<Menu.Item>
|
||||
{!!isSearchEnabled && <SearchBar clearSearch={clearSearch} />}
|
||||
</Menu.Item>
|
||||
<Menu.Item>
|
||||
{isSearchEnabled && (
|
||||
<Menu.Item>
|
||||
<SearchBar clearSearch={clearSearch} />
|
||||
</Menu.Item>
|
||||
)}
|
||||
<Menu.Item as="div">
|
||||
<NavLink
|
||||
className={cn(
|
||||
'flex w-full cursor-pointer items-center gap-3 px-3 py-3 text-sm text-white transition-colors duration-200 hover:bg-gray-700',
|
||||
|
|
@ -84,10 +86,10 @@ export default function NavLinks({ clearSearch, isSearchEnabled }) {
|
|||
/>
|
||||
</Menu.Item>
|
||||
<div className="my-1.5 h-px bg-white/20" role="none" />
|
||||
<Menu.Item>
|
||||
<Menu.Item as="div">
|
||||
<DarkMode />
|
||||
</Menu.Item>
|
||||
<Menu.Item>
|
||||
<Menu.Item as="div">
|
||||
<NavLink
|
||||
className="flex w-full cursor-pointer items-center gap-3 px-3 py-3 text-sm text-white transition-colors duration-200 hover:bg-gray-700"
|
||||
svg={() => <TrashIcon />}
|
||||
|
|
@ -96,7 +98,7 @@ export default function NavLinks({ clearSearch, isSearchEnabled }) {
|
|||
/>
|
||||
</Menu.Item>
|
||||
<div className="my-1.5 h-px bg-white/20" role="none" />
|
||||
<Menu.Item>
|
||||
<Menu.Item as="div">
|
||||
<Logout />
|
||||
</Menu.Item>
|
||||
</Menu.Items>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue