aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/server/ServerApi.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/server/ServerApi.ts')
-rw-r--r--src/api/server/ServerApi.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/server/ServerApi.ts b/src/api/server/ServerApi.ts
index a3d873c65..860b7b76e 100644
--- a/src/api/server/ServerApi.ts
+++ b/src/api/server/ServerApi.ts
@@ -507,7 +507,7 @@ export default class ServerApi {
507 async _mapServiceModels(services: any[]) { 507 async _mapServiceModels(services: any[]) {
508 const recipes = services.map((s: { recipeId: string }) => s.recipeId); 508 const recipes = services.map((s: { recipeId: string }) => s.recipeId);
509 await this._bulkRecipeCheck(recipes); 509 await this._bulkRecipeCheck(recipes);
510 /* eslint-disable no-return-await */ 510
511 return Promise.all( 511 return Promise.all(
512 services.map(async (service: any) => this._prepareServiceModel(service)), 512 services.map(async (service: any) => this._prepareServiceModel(service)),
513 ); 513 );