Skip to content

Commit 8548564

Browse files
Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Front into feat/screenshot
2 parents f05f0c6 + eae04a2 commit 8548564

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

components/FileUploader.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@
4444
4545
const { multiple, accept } = toRefs(props)
4646
47-
const label = multiple ? "Please select file(s)" : "Please select a file"
47+
const label = multiple
48+
? "Please select file(s) to import"
49+
: "Please select a file to import"
4850
const files = ref([])
4951
const loading = ref(false)
5052
const files_uploaded = ref(false)

components/ObjectSelector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<FetchingData v-if="loading" />
33
<v-row v-else-if="Object.keys(allowed_objects).length" class="justify-left">
4-
<v-col v-for="(value, key) in allowed_objects" :key="key" cols="2" md="2">
4+
<v-col v-for="(value, key) in allowed_objects" :key="key" cols="2" md="4">
55
<v-tooltip
66
:text="
77
value['is_loadable']

0 commit comments

Comments
 (0)