Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGreta Doci <gretadoci@gmail.com>2019-08-26 18:27:13 +0300
committerGreta Doci <gretadoci@gmail.com>2019-08-27 12:43:28 +0300
commitd554339755aa1eadf6955882b58f5247bfd9e975 (patch)
tree39fc9d435a8a0be77f4c81e4b252a540c2895cc5 /src
parentca3057f7ec2b59bd06c38fbd3db32cdb901c47c7 (diff)
Put country picker above world map
Signed-off-by: Greta Doci <gretadoci@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/Location.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Location.vue b/src/Location.vue
index 640764d..8801482 100644
--- a/src/Location.vue
+++ b/src/Location.vue
@@ -1,7 +1,6 @@
<template>
<div class="where-is-my-data">
<span v-show="isLoading" class="icon icon-loading" />
- <Map v-show="!isLoading" />
<p v-show="!isEditingLocation && !isLoading">
<span v-show="country">{{ label }}<strong>{{ country }}.</strong></span>
<span v-show="!country">{{ labelForNoCountry }}</span>
@@ -19,6 +18,7 @@
/>
<span v-show="isSavingChanges" class="icon icon-loading" />
</div>
+ <Map v-show="!isLoading" />
</div>
</template>