Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 8e224c6

Browse files
committed
ddbb title on navbar
1 parent 3bcf7e7 commit 8e224c6

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/components/NavBar.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import MenuItem from "@mui/material/MenuItem";
1111
import Toolbar from "@mui/material/Toolbar";
1212
import { c } from "helpers/StylesHelper";
1313
import MenuIcon from "components/img/MenuIcon";
14+
import Typography from "@mui/material/Typography";
1415

1516
export function NavBar(navBarProps: NavBarProps) {
1617
const [anchorEl, setAnchorEl] = React.useState<null | HTMLElement>(null);
@@ -72,6 +73,14 @@ export function NavBar(navBarProps: NavBarProps) {
7273
<MenuIcon />
7374
</IconButton>
7475
{renderMenu}
76+
<Typography
77+
variant="h6"
78+
noWrap
79+
component="div"
80+
sx={{ display: { xs: "none", sm: "block" } }}
81+
>
82+
{navBarProps.csvButtonProps.name}
83+
</Typography>
7584
{/** Global filter */}
7685
<GlobalFilter {...navBarProps.globalFilterRows} />
7786
</Toolbar>

src/components/reducers/GlobalFilter.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ export default function GlobalFilter(globalFilterProps: GlobalFilterProps) {
4949

5050
return (
5151
<span>
52-
Search:{" "}
5352
<DebouncedInput
5453
value={globalFilter ?? ""}
5554
onChange={(value) => setGlobalFilter(String(value))}

0 commit comments

Comments
 (0)