mirror of
https://github.com/Readarr/Readarr
synced 2025-12-30 12:13:55 +01:00
Fixed: Manual Import sorting by quality
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com> Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
parent
4fcc463d6a
commit
0c6a51c7f7
2 changed files with 2 additions and 1 deletions
|
|
@ -55,6 +55,7 @@ const columns = [
|
|||
{
|
||||
name: 'size',
|
||||
label: 'Size',
|
||||
isSortable: true,
|
||||
isVisible: true
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ export const defaultState = {
|
|||
},
|
||||
|
||||
quality: function(item, direction) {
|
||||
return item.quality ? item.qualityWeight : 0;
|
||||
return item.qualityWeight || 0;
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue