diff options
author | Ashutosh Bishnoi <mail2bishnoi@gmail.com> | 2021-05-25 10:54:25 +0530 |
---|---|---|
committer | Ashutosh Bishnoi <mail2bishnoi@gmail.com> | 2021-05-25 10:54:25 +0530 |
commit | 402b30df63f6dfafda32ae37aa2d4df9ef638fd2 (patch) | |
tree | fa39199f5d54592050bf6689455193143029055b /modern/src/components | |
parent | 81ad6a0e5c8ed4f35ccac0cd271b8923e686c060 (diff) | |
download | trackermap-web-402b30df63f6dfafda32ae37aa2d4df9ef638fd2.tar.gz trackermap-web-402b30df63f6dfafda32ae37aa2d4df9ef638fd2.tar.bz2 trackermap-web-402b30df63f6dfafda32ae37aa2d4df9ef638fd2.zip |
Added Report Title For Mobile and Tablet view
Diffstat (limited to 'modern/src/components')
-rw-r--r-- | modern/src/components/reports/ReportNavbar.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modern/src/components/reports/ReportNavbar.js b/modern/src/components/reports/ReportNavbar.js index 674db3a4..3167c758 100644 --- a/modern/src/components/reports/ReportNavbar.js +++ b/modern/src/components/reports/ReportNavbar.js @@ -3,7 +3,7 @@ import { AppBar, Toolbar, Typography, IconButton } from '@material-ui/core'; import MenuIcon from '@material-ui/icons/Menu'; import t from '../../common/localization'; -const ReportNavbar = ({ openDrawer, setOpenDrawer }) => { +const ReportNavbar = ({ openDrawer, setOpenDrawer, reportTitle }) => { return ( <AppBar position="fixed" color="inherit"> @@ -16,7 +16,7 @@ const ReportNavbar = ({ openDrawer, setOpenDrawer }) => { <MenuIcon /> </IconButton> <Typography variant="h6" noWrap> - {t('reportTitle')} + {t('reportTitle')} {reportTitle ? `/ ${reportTitle}` : ''} </Typography> </Toolbar> </AppBar> |