mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-03 15:23:59 +00: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:
@@ -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;
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user