Skip to content

Commit

Permalink
fix: fix navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
the-homeless-god committed Sep 1, 2024
1 parent 76a8a3d commit 625c7da
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import {
DateCell,
DateNumber,
DayOfWeek,
HeaderText,
LineContainer,
ScrollableBox,
StickyColumnCell,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import ViewModuleIcon from "@mui/icons-material/ViewModule"
import { IconButton } from "@mui/material"

interface ViewModeToggleProps {
viewMode: "list" | "grid"
viewMode: "list" | "grid" | "timeline"
onToggleViewMode: () => void
}

Expand Down
2 changes: 1 addition & 1 deletion application/frontend/src/pages/report/Report.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export const ReportPage: React.FC = () => {
<Container>
<NavButtonContainer>
<StyledBreadcrumbs aria-label="breadcrumb">
<NavButton to="/projects" icon={<HomeIcon fontSize="small" />}>
<NavButton to="/" icon={<HomeIcon fontSize="small" />}>
{t("projectList")}
</NavButton>
<NavButton to="/projects/1">{t("projectName", { name: "Название проекта" })}</NavButton>
Expand Down

0 comments on commit 625c7da

Please sign in to comment.