Link tags aren't hiding sidebar on click
This commit is contained in:
parent
fab83cfc33
commit
756115ba54
|
@ -322,14 +322,13 @@ function GroupsList(props: {
|
||||||
ref={setContainerRef}
|
ref={setContainerRef}
|
||||||
>
|
>
|
||||||
{memberItems.map((item) => (
|
{memberItems.map((item) => (
|
||||||
<Link
|
<a
|
||||||
href={
|
href={
|
||||||
item.href +
|
item.href +
|
||||||
(notifIsForThisItem(item.href) ? '/' + GROUP_CHAT_SLUG : '')
|
(notifIsForThisItem(item.href) ? '/' + GROUP_CHAT_SLUG : '')
|
||||||
}
|
}
|
||||||
key={item.href}
|
key={item.name}
|
||||||
>
|
onClick={trackCallback('sidebar: ' + item.name)}
|
||||||
<span
|
|
||||||
className={clsx(
|
className={clsx(
|
||||||
'cursor-pointer truncate',
|
'cursor-pointer truncate',
|
||||||
'group flex items-center rounded-md px-3 py-2 text-sm font-medium text-gray-600 hover:bg-gray-100 hover:text-gray-900',
|
'group flex items-center rounded-md px-3 py-2 text-sm font-medium text-gray-600 hover:bg-gray-100 hover:text-gray-900',
|
||||||
|
@ -337,8 +336,7 @@ function GroupsList(props: {
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{item.name}
|
{item.name}
|
||||||
</span>
|
</a>
|
||||||
</Link>
|
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user