Merge branch 'tags_fix' into dev_environment

This commit is contained in:
Carter 2025-05-28 12:43:52 -06:00
commit 63c6dd892b

View file

@ -7,6 +7,7 @@ import {
LinkProps,
Skeleton,
Theme,
Tooltip,
Typography,
useTheme
} from "@mui/material";
@ -334,8 +335,8 @@ export default function SmartBreadcrumb(props: Props) {
const linkComponent = (to: string, label: string, lastPath: boolean) => {
return (
<Tooltip title={label} key={"breadcrumb-"+to}>
<Chip
key={to}
variant={lastPath ? "filled" : "outlined"}
label={
<LinkRouter
@ -350,6 +351,7 @@ export default function SmartBreadcrumb(props: Props) {
}
className={classes.chip}
/>
</Tooltip>
);
};