@geode/opengeodeweb-front 9.1.0 → 9.1.1-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -44,7 +44,9 @@
|
|
|
44
44
|
|
|
45
45
|
const { multiple, accept } = toRefs(props)
|
|
46
46
|
|
|
47
|
-
const label = multiple
|
|
47
|
+
const label = multiple
|
|
48
|
+
? "Please select file(s) to import"
|
|
49
|
+
: "Please select a file to import"
|
|
48
50
|
const files = ref([])
|
|
49
51
|
const loading = ref(false)
|
|
50
52
|
const files_uploaded = ref(false)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<FetchingData v-if="loading" />
|
|
3
3
|
<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="
|
|
4
|
+
<v-col v-for="(value, key) in allowed_objects" :key="key" cols="2" md="4">
|
|
5
5
|
<v-tooltip
|
|
6
6
|
:text="
|
|
7
7
|
value['is_loadable']
|
package/package.json
CHANGED