aboutsummaryrefslogtreecommitdiff
path: root/modern/src/other/GeofencesPage.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/other/GeofencesPage.jsx')
-rw-r--r--modern/src/other/GeofencesPage.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/other/GeofencesPage.jsx b/modern/src/other/GeofencesPage.jsx
index 4f31c1b3..a27a6dca 100644
--- a/modern/src/other/GeofencesPage.jsx
+++ b/modern/src/other/GeofencesPage.jsx
@@ -78,7 +78,7 @@ const GeofencesPage = () => {
.map((point) => `${point.getAttribute('lat')} ${point.getAttribute('lon')}`)
.join(', ');
const area = `LINESTRING (${coordinates})`;
- const newItem = { name: '', area };
+ const newItem = { name: t('sharedGeofence'), area };
try {
const response = await fetch('/api/geofences', {
method: 'POST',