From 0f0f29fcee1e53705cdfd26cad2a1ae9bd1fd0f1 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Wed, 3 Jun 2020 20:28:48 +0100 Subject: [PATCH] Show regions for location on popup --- src/components/LDeviceLocationPopup.vue | 13 +++++++++++++ src/locales/de.json | 3 ++- src/locales/en.json | 3 ++- src/locales/es.json | 3 ++- src/styles/_base.scss | 1 + src/views/Map.vue | 2 ++ 6 files changed, 22 insertions(+), 3 deletions(-) diff --git a/src/components/LDeviceLocationPopup.vue b/src/components/LDeviceLocationPopup.vue index 4071769..a1e96fd 100644 --- a/src/components/LDeviceLocationPopup.vue +++ b/src/components/LDeviceLocationPopup.vue @@ -35,6 +35,10 @@ +
+ {{ $t("Regions:") }} + {{ regions.join(", ") }} +
@@ -56,6 +60,11 @@ margin-right: 20px; } } +.regions { + border-top: 1px solid var(--color-separator); + margin-top: 15px; + padding-top: 15px; +}