mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-31 05:43:33 +03:00
fix: size error (#900)
This commit is contained in:
parent
c69850872f
commit
d1d5498e31
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ export default {
|
||||||
.map(getters.getTorrent)
|
.map(getters.getTorrent)
|
||||||
.filter(torrent => torrent !== undefined)
|
.filter(torrent => torrent !== undefined)
|
||||||
.map(torrent => torrent.size)
|
.map(torrent => torrent.size)
|
||||||
.reduce((partialSum, newVal) => partialSum + newVal)
|
.reduce((partialSum, newVal) => partialSum + newVal, 0)
|
||||||
|
|
||||||
return i18n
|
return i18n
|
||||||
.tc('dashboard.selectedTorrentsCount', state.filteredTorrentsCount)
|
.tc('dashboard.selectedTorrentsCount', state.filteredTorrentsCount)
|
||||||
|
|
Loading…
Add table
Reference in a new issue