1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-27 23:06:29 -04:00

Mass Editor size and options

New: Option to show size in Mass Editor
New: Size on Disk in Mass Editor custom filters

Closes #3273
This commit is contained in:
Mark McDowall
2020-05-30 13:56:28 -07:00
parent 3586d7042b
commit 069fc5cd33
7 changed files with 336 additions and 190 deletions
@@ -140,6 +140,12 @@ export const sortPredicates = {
}
return result;
},
sizeOnDisk: function(item) {
const { statistics = {} } = item;
return statistics.sizeOnDisk;
}
};