Merge branch 'tags_fix' into staging_environment

This commit is contained in:
Carter 2025-05-28 12:43:58 -06:00
commit aaf3cd2784

View file

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