aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports/NoRowsOverlay.js
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2021-12-20 22:27:38 -0600
committerIván Ávalos <avalos@disroot.org>2021-12-20 22:27:38 -0600
commit5b77af549c94a4cda8c5ca4764c7fbc4d8f065a3 (patch)
tree0213e1a13662716ca002e891da285a1d1c486942 /modern/src/reports/NoRowsOverlay.js
parentcb9728775b0e5eca8c705c0e2c61f9171b7068d9 (diff)
downloadetbsa-traccar-web-5b77af549c94a4cda8c5ca4764c7fbc4d8f065a3.tar.gz
etbsa-traccar-web-5b77af549c94a4cda8c5ca4764c7fbc4d8f065a3.tar.bz2
etbsa-traccar-web-5b77af549c94a4cda8c5ca4764c7fbc4d8f065a3.zip
Localized grid no rows message, removed e-mail report button, among other report-related changes
Diffstat (limited to 'modern/src/reports/NoRowsOverlay.js')
-rw-r--r--modern/src/reports/NoRowsOverlay.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/modern/src/reports/NoRowsOverlay.js b/modern/src/reports/NoRowsOverlay.js
new file mode 100644
index 0000000..9fe53b1
--- /dev/null
+++ b/modern/src/reports/NoRowsOverlay.js
@@ -0,0 +1,15 @@
+import React, { useState } from 'react';
+import { Typography } from '@material-ui/core';
+import { GridOverlay } from '@material-ui/data-grid';
+import { useTranslation } from '../LocalizationProvider';
+
+const NoRowsOverlay = () => {
+ const t = useTranslation();
+ return (
+ <GridOverlay>
+ <Typography>{t('sharedNoRows')}</Typography>
+ </GridOverlay>
+ );
+}
+
+export default NoRowsOverlay;