when sorting on updateDate use installDate as a fallback

This commit is contained in:
tophf 2020-06-23 21:14:31 +03:00
parent 60a37af0e0
commit 3ed3b242c8

View File

@ -32,7 +32,7 @@ const sorter = (() => {
},
dateUpdated: {
text: t('dateUpdated'),
parse: ({style}) => style.updateDate,
parse: ({style}) => style.updateDate || style.installDate,
sorter: sorterType.number
}
};