Add play downloaded episode and library size

This commit is contained in:
Marcos Carvalho 2024-06-11 19:31:10 +01:00
parent f82c4834c3
commit 1cdcd7327f
No known key found for this signature in database
3 changed files with 81 additions and 21 deletions

View file

@ -23,6 +23,9 @@
</div>
</template>
</div>
<div v-if="localLibraryItems.length" class="mt-4 text-sm text-fg-muted">
{{ $strings.LabelTotalSize }}: {{ $bytesPretty(localLibraryItems.reduce((acc, item) => acc + item.size, 0)) }}
</div>
</div>
</template>