Implemented library search and installation

This commit is contained in:
Christian Weichel
2019-05-07 17:04:37 +02:00
parent 50c1c7dcb2
commit 2f7d26ded9
13 changed files with 738 additions and 94 deletions

View File

@@ -80,14 +80,6 @@ export class BoardsServiceImpl implements BoardsService {
installedVersion,
}
return result;
}).sort((a, b) => {
if (a.name < b.name) {
return -1;
} else if (a.name === b.name) {
return 0;
} else {
return 1;
}
});
return { items };