fix(apps): always list my apps ordered by id
This commit is contained in:
parent
a8738f9f61
commit
75ca6f01f8
1 changed files with 1 additions and 1 deletions
|
@ -354,7 +354,7 @@ export class AppServiceClass {
|
|||
* @returns {Promise<App[]>} - An array of app objects
|
||||
*/
|
||||
public installedApps = async () => {
|
||||
const apps = await this.prisma.app.findMany();
|
||||
const apps = await this.prisma.app.findMany({ orderBy: { id: 'asc' } });
|
||||
|
||||
return apps
|
||||
.map((app) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue