aboutsummaryrefslogtreecommitdiff
path: root/modern/src/components
diff options
context:
space:
mode:
authorAshutosh Bishnoi <mail2bishnoi@gmail.com>2021-05-25 10:54:25 +0530
committerAshutosh Bishnoi <mail2bishnoi@gmail.com>2021-05-25 10:54:25 +0530
commit402b30df63f6dfafda32ae37aa2d4df9ef638fd2 (patch)
treefa39199f5d54592050bf6689455193143029055b /modern/src/components
parent81ad6a0e5c8ed4f35ccac0cd271b8923e686c060 (diff)
downloadetbsa-traccar-web-402b30df63f6dfafda32ae37aa2d4df9ef638fd2.tar.gz
etbsa-traccar-web-402b30df63f6dfafda32ae37aa2d4df9ef638fd2.tar.bz2
etbsa-traccar-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.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/modern/src/components/reports/ReportNavbar.js b/modern/src/components/reports/ReportNavbar.js
index 674db3a..3167c75 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>