Fixed: Manual Import sorting by quality

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
Signed-off-by: Robin Dadswell <robin@dadswell.email>
pull/770/head
Qstick 4 years ago
parent 4fcc463d6a
commit 0c6a51c7f7

@ -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…
Cancel
Save