mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
File size won't be bytes anymore
This commit is contained in:
parent
763c4bd25b
commit
6c2534ec61
2 changed files with 5 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
|||
<tbody>
|
||||
<tr>
|
||||
<td>{{path}}</td>
|
||||
<td>{{size}}</td>
|
||||
<td>{{fileSize size}}</td>
|
||||
<td>{{quality.quality.name}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
|
@ -18,3 +18,7 @@ Handlebars.registerHelper("debug", function(optionalValue) {
|
|||
console.log(optionalValue);
|
||||
}
|
||||
});
|
||||
|
||||
Handlebars.registerHelper("fileSize", function(size) {
|
||||
return size.bytes();
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue