forked from FoundKeyGang/FoundKey
client: remove separate empty drive/empty folder messages
These messages are wrong when using the newly added filter and there are no filtering results. Instead of adding yet another separate message for an empty pagination, just show the default empty thingy the pagination component provides already.
This commit is contained in:
parent
134c3b43e6
commit
6722ccfc64
2 changed files with 0 additions and 7 deletions
|
@ -278,8 +278,6 @@ createFolder: "Create a folder"
|
|||
renameFolder: "Rename this folder"
|
||||
deleteFolder: "Delete this folder"
|
||||
addFile: "Add a file"
|
||||
emptyDrive: "Your Drive is empty"
|
||||
emptyFolder: "This folder is empty"
|
||||
unableToDelete: "Unable to delete"
|
||||
inputNewFileName: "Enter a new filename"
|
||||
inputNewDescription: "Enter new caption"
|
||||
|
|
|
@ -57,11 +57,6 @@
|
|||
ref="paginationElem"
|
||||
:pagination="pagination"
|
||||
>
|
||||
<template #empty>
|
||||
<p v-if="folder == null" class="empty"><strong>{{ i18n.ts.emptyDrive }}</strong></p>
|
||||
<p v-else class="empty">{{ i18n.ts.emptyFolder }}</p>
|
||||
</template>
|
||||
|
||||
<template #default="{ items }">
|
||||
<div class="contents">
|
||||
<template v-for="(f, i) in items">
|
||||
|
|
Loading…
Reference in a new issue