From 6ba6ad543ea3aa64cc71d4af0d336084f8a9455a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Wed, 8 Nov 2017 22:52:03 +0100 Subject: [PATCH] Move the uhk60-right directory from modules to devices. --- .../uhk-web/src/app/services/svg-module-provider.service.ts | 2 +- .../uhk-web/src/{modules => devices}/uhk60-right/layout.xml | 0 .../uhk-web/src/{modules => devices}/uhk60-right/module.json | 0 .../uhk-web/src/{modules => devices}/uhk60-right/separator.xml | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename packages/uhk-web/src/{modules => devices}/uhk60-right/layout.xml (100%) rename packages/uhk-web/src/{modules => devices}/uhk60-right/module.json (100%) rename packages/uhk-web/src/{modules => devices}/uhk60-right/separator.xml (100%) diff --git a/packages/uhk-web/src/app/services/svg-module-provider.service.ts b/packages/uhk-web/src/app/services/svg-module-provider.service.ts index a0b921f2..13638079 100644 --- a/packages/uhk-web/src/app/services/svg-module-provider.service.ts +++ b/packages/uhk-web/src/app/services/svg-module-provider.service.ts @@ -30,7 +30,7 @@ export class SvgModuleProviderService { private getRightModule(): SvgModule { if (!this.right) { - this.right = new SvgModule(require('xml-loader!../../modules/uhk60-right/layout.xml').svg); + this.right = new SvgModule(require('xml-loader!../../devices/uhk60-right/layout.xml').svg); } return this.right; } diff --git a/packages/uhk-web/src/modules/uhk60-right/layout.xml b/packages/uhk-web/src/devices/uhk60-right/layout.xml similarity index 100% rename from packages/uhk-web/src/modules/uhk60-right/layout.xml rename to packages/uhk-web/src/devices/uhk60-right/layout.xml diff --git a/packages/uhk-web/src/modules/uhk60-right/module.json b/packages/uhk-web/src/devices/uhk60-right/module.json similarity index 100% rename from packages/uhk-web/src/modules/uhk60-right/module.json rename to packages/uhk-web/src/devices/uhk60-right/module.json diff --git a/packages/uhk-web/src/modules/uhk60-right/separator.xml b/packages/uhk-web/src/devices/uhk60-right/separator.xml similarity index 100% rename from packages/uhk-web/src/modules/uhk60-right/separator.xml rename to packages/uhk-web/src/devices/uhk60-right/separator.xml