aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/components/LdGallery.vue
diff options
context:
space:
mode:
authorZero~Informatique2020-02-27 17:42:24 +0100
committerZero~Informatique2020-02-27 18:30:33 +0100
commit4641f35baebd618ec51fa549adf64670c31c647f (patch)
treeeec84231d3c4fbe470e93b98333238f212ba7b27 /viewer/src/components/LdGallery.vue
parent3e27a3cfa35359f6ffa83843aa2f2ad53f42f1d4 (diff)
downloadldgallery-4641f35baebd618ec51fa549adf64670c31c647f.tar.gz
viewer: added a count of results found in other folders when no-results are found
Diffstat (limited to 'viewer/src/components/LdGallery.vue')
-rw-r--r--viewer/src/components/LdGallery.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/viewer/src/components/LdGallery.vue b/viewer/src/components/LdGallery.vue
index 169bc54..16e9f7c 100644
--- a/viewer/src/components/LdGallery.vue
+++ b/viewer/src/components/LdGallery.vue
@@ -24,7 +24,7 @@
24 <ld-thumbnail :item="item" /> 24 <ld-thumbnail :item="item" />
25 </router-link> 25 </router-link>
26 </div> 26 </div>
27 <div v-if="hasNoResults()">{{noresult}}</div> 27 <div v-if="hasNoResults()" class="noresult">{{noresult}}</div>
28 </div> 28 </div>
29</template> 29</template>
30 30
@@ -44,4 +44,7 @@ export default class LdPicture extends Vue {
44</script> 44</script>
45 45
46<style lang="scss"> 46<style lang="scss">
47.thumbnail-tiles .noresult {
48 margin-top: 40px;
49}
47</style> 50</style>