Sort scans by created time
This commit is contained in:
parent
65ac551688
commit
646adb9a69
1 changed files with 1 additions and 1 deletions
|
|
@ -202,7 +202,7 @@ export default {
|
|||
scan.can_stitch = !scan.stitch_available && scan.number_of_images > 3;
|
||||
});
|
||||
scans.sort((a, b) => {
|
||||
return b.modified - a.modified;
|
||||
return b.created - a.created;
|
||||
});
|
||||
this.scans = scans;
|
||||
} catch (err) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue