This repository was archived by the owner on Jul 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import MenuItem from "@mui/material/MenuItem";
1111import Toolbar from "@mui/material/Toolbar" ;
1212import { c } from "helpers/StylesHelper" ;
1313import MenuIcon from "components/img/MenuIcon" ;
14+ import Typography from "@mui/material/Typography" ;
1415
1516export 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 >
Original file line number Diff line number Diff 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 ) ) }
You can’t perform that action at this time.
0 commit comments