From b5d31c546799e14655c61ba8cbf0a2054d7a0594 Mon Sep 17 00:00:00 2001 From: Ricardo Cino Date: Tue, 19 Jul 2022 21:24:40 +0200 Subject: chore: correctly map serviceIds during service/workspace import (#44) --- app/Controllers/Http/DashboardController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app') diff --git a/app/Controllers/Http/DashboardController.js b/app/Controllers/Http/DashboardController.js index 611cd4e..9b3b08e 100644 --- a/app/Controllers/Http/DashboardController.js +++ b/app/Controllers/Http/DashboardController.js @@ -257,7 +257,7 @@ class DashboardController { settings: JSON.stringify(service.settings), }); - serviceIdTranslation[service.id] = serviceId; + serviceIdTranslation[service.serviceId] = serviceId; } } catch (e) { const errorMessage = `Could not import your services into our system.\nError: ${e}`; -- cgit v1.2.3-54-g00ecf