mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 16:52:04 +02:00
File size won't be bytes anymore
This commit is contained in:
@@ -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();
|
||||
});
|
Reference in New Issue
Block a user