feat: implement server-side search, filter state management, and clearable inputs for data tables with associated API transformer updates.
This commit is contained in:
+2
-1
@@ -13,6 +13,7 @@ import {
|
||||
Tooltip,
|
||||
} from '@mantine/core';
|
||||
import { useLocalStorage } from '@mantine/hooks';
|
||||
import { Link } from 'react-router-dom';
|
||||
import { ChevronRight, LucideIcon, Maximize2, Minimize2 } from 'lucide-react'; // <-- Update Import Icon
|
||||
import { PageActions, PageActionsProps } from '../../../../components';
|
||||
|
||||
@@ -91,7 +92,7 @@ function BreadcrumbBar({ breadcrumbs }: BreadcrumbBarProps) {
|
||||
};
|
||||
|
||||
return !isText ? (
|
||||
<Anchor key={index} {...sharedProps} href={item.href}>
|
||||
<Anchor component={Link} key={index} {...sharedProps} to={item.href || '#'}>
|
||||
{item.label}
|
||||
</Anchor>
|
||||
) : (
|
||||
|
||||
Reference in New Issue
Block a user