mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
Give systems sorted by their number
This commit is contained in:
parent
bad39944ac
commit
c178de1c86
|
|
@ -15,7 +15,9 @@ class RdioScannerSystem extends DataSource {
|
||||||
}
|
}
|
||||||
|
|
||||||
async getSystems() {
|
async getSystems() {
|
||||||
const systems = await this.store.rdioScannerSystem.findAll();
|
const systems = await this.store.rdioScannerSystem.findAll({
|
||||||
|
order: [['system', 'ASC']],
|
||||||
|
});
|
||||||
return systemReducer(systems);
|
return systemReducer(systems);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue