This commit is contained in:
Čarodej
2022-03-20 19:00:46 +01:00
parent 73ef6e6c1f
commit 42245317f4
10 changed files with 44 additions and 24 deletions
@@ -10,14 +10,14 @@
<!--Folder tree-->
<div v-if="!isLoadingTree && navigation">
<ThumbnailItem v-if="clipboard.length < 2 || isSelectedItem" class="mb-5" :item="pickedItem" />
<ThumbnailItem v-if="clipboard.length === 1 || isSelectedItem" class="mb-5" :item="pickedItem" />
<TitlePreview
class="mb-4"
icon="check-square"
:title="$t('selected_multiple')"
:subtitle="this.clipboard.length + ' ' + $tc('items', this.clipboard.length)"
v-if="clipboard.length > 1 && !isSelectedItem"
:subtitle="clipboard.length + ' ' + $tc('items', clipboard.length)"
v-if="clipboard.length > 1 || !isSelectedItem"
/>
<TreeMenu