Merge pull request #1393 from farhan-tariq/fix-for-collections
Fix when folder is having no request property
This commit is contained in:
commit
8e63a84152
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@
|
|||
/>
|
||||
</li>
|
||||
</ul>
|
||||
<ul v-if="folder.folders.length === 0 && folder.requests.length === 0">
|
||||
<ul v-if="folder.folders && folder.folders.length === 0 && folder.requests && folder.requests.length === 0">
|
||||
<li class="flex ml-8 border-l border-brdColor">
|
||||
<p class="info"><i class="material-icons">not_interested</i> {{ $t("folder_empty") }}</p>
|
||||
</li>
|
||||
|
|
|
|||
Loading…
Reference in a new issue