mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-26 07:26:49 +00:00
slug 调整兼容已有主题
This commit is contained in:
@@ -21,7 +21,7 @@ export const MenuItemCollapse = props => {
|
||||
return null
|
||||
}
|
||||
|
||||
const selected = router.pathname === link.to || router.asPath === link.to
|
||||
const selected = router.pathname === link.href || router.asPath === link.href
|
||||
|
||||
const toggleShow = () => {
|
||||
changeShow(!show)
|
||||
@@ -43,7 +43,7 @@ export const MenuItemCollapse = props => {
|
||||
onClick={toggleShow}>
|
||||
{!hasSubMenu && (
|
||||
<Link
|
||||
href={link?.to}
|
||||
href={link?.href}
|
||||
target={link?.target}
|
||||
className='py-2 w-full my-auto items-center justify-between flex '>
|
||||
<div>
|
||||
@@ -79,7 +79,7 @@ export const MenuItemCollapse = props => {
|
||||
className='
|
||||
not:last-child:border-b-0 border-b dark:border-gray-800 py-2 px-14 cursor-pointer hover:bg-gray-100 dark:text-gray-200
|
||||
font-extralight dark:bg-black text-left justify-start text-gray-600 bg-gray-50 dark:hover:bg-gray-900 tracking-widest transition-all duration-200'>
|
||||
<Link href={sLink.to} target={link?.target}>
|
||||
<Link href={sLink.href} target={link?.target}>
|
||||
<div>
|
||||
<div
|
||||
className={`${sLink.icon} text-center w-3 mr-3 text-xs`}
|
||||
|
||||
Reference in New Issue
Block a user