We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0b43d58 + 4b8da80 commit ec9c507Copy full SHA for ec9c507
src/views/FilesList/FilesList.vue
@@ -50,13 +50,21 @@
50
v-else-if="!loading && isEmptyDir && filtersStore.activeChips.length === 0"
51
:name="t('libresign', 'There are no documents')"
52
:description="canRequestSign ? t('libresign', 'Choose the file to request signatures.') : ''">
53
- <template #action>
+ <template v-if="canRequestSign" #action>
54
<RequestPicker />
55
</template>
56
<template #icon>
57
<FolderIcon />
58
59
</NcEmptyContent>
60
+
61
+ <NcEmptyContent
62
+ v-else-if="!loading && isEmptyDir && filtersStore.activeChips.length > 0"
63
+ :name="t('libresign', 'No documents found')">
64
+ <template #icon>
65
+ <FolderIcon />
66
+ </template>
67
+ </NcEmptyContent>
68
69
</FilesListVirtual>
70
</NcAppContent>
0 commit comments