mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
fix: hovering on tabslist items at dashboard (#645)
This commit is contained in:
@ -80,7 +80,12 @@ export default async function DocumentsPage({ searchParams = {} }: DocumentsPage
|
||||
ExtendedDocumentStatus.DRAFT,
|
||||
ExtendedDocumentStatus.ALL,
|
||||
].map((value) => (
|
||||
<TabsTrigger key={value} className="min-w-[60px]" value={value} asChild>
|
||||
<TabsTrigger
|
||||
key={value}
|
||||
className="hover:text-primary min-w-[60px]"
|
||||
value={value}
|
||||
asChild
|
||||
>
|
||||
<Link href={getTabHref(value)} scroll={false}>
|
||||
<DocumentStatus status={value} />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user