fix: don't display 'Collection is empty' label if collection has any requests
This commit is contained in:
parent
9e9a73efc6
commit
ae8dccf292
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@
|
|||
v-on:edit-folder="editFolder"
|
||||
/>
|
||||
</li>
|
||||
<li v-if="collection.folders.length === 0">
|
||||
<li v-if="(collection.folders.length === 0) && (collection.requests.length === 0)">
|
||||
<label>Collection is empty</label>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
|
|||
Loading…
Reference in a new issue