diff --git a/Step/wwwroot/src/app_modules/under-the-hood/components/plc-softkeys.ts b/Step/wwwroot/src/app_modules/under-the-hood/components/plc-softkeys.ts
index 6ce2a3d7..af4cf0f4 100644
--- a/Step/wwwroot/src/app_modules/under-the-hood/components/plc-softkeys.ts
+++ b/Step/wwwroot/src/app_modules/under-the-hood/components/plc-softkeys.ts
@@ -9,6 +9,7 @@ import { DataService } from "src/services/dataService";
import onOffSoftKey from "./soft-key2.vue";
import procedureSoftKey from "./soft-key3.vue";
import groupSoftKey from "./soft-key1.vue";
+import { Prop } from "vue-property-decorator";
@Componet({
@@ -16,6 +17,9 @@ import groupSoftKey from "./soft-key1.vue";
})
export default class softKeys extends Vue {
+ @Prop({ default: false })
+ public siemensKeyboardOption: boolean;
+
public maxNumberSelected: number = 10;
public selectedSection: number = 1;
diff --git a/Step/wwwroot/src/app_modules/under-the-hood/components/plc-softkeys.vue b/Step/wwwroot/src/app_modules/under-the-hood/components/plc-softkeys.vue
index c1ead884..5f12fac7 100644
--- a/Step/wwwroot/src/app_modules/under-the-hood/components/plc-softkeys.vue
+++ b/Step/wwwroot/src/app_modules/under-the-hood/components/plc-softkeys.vue
@@ -1,5 +1,5 @@
-
+
diff --git a/Step/wwwroot/src/app_modules/under-the-hood/components/under-the-hood.ts b/Step/wwwroot/src/app_modules/under-the-hood/components/under-the-hood.ts
index 70f3690f..12afafb5 100644
--- a/Step/wwwroot/src/app_modules/under-the-hood/components/under-the-hood.ts
+++ b/Step/wwwroot/src/app_modules/under-the-hood/components/under-the-hood.ts
@@ -53,6 +53,9 @@ export default {
processes: function() {
return this.$store.state.process.process;
},
+ siemensKeyboardOption() {
+ return this.$store.state.machineInfo.siemensKeyboardOption;
+ }
},
methods: {
toggleMainView() {
diff --git a/Step/wwwroot/src/app_modules/under-the-hood/components/under-the-hood.vue b/Step/wwwroot/src/app_modules/under-the-hood/components/under-the-hood.vue
index 231777b2..045b94f4 100644
--- a/Step/wwwroot/src/app_modules/under-the-hood/components/under-the-hood.vue
+++ b/Step/wwwroot/src/app_modules/under-the-hood/components/under-the-hood.vue
@@ -14,12 +14,12 @@
diff --git a/Step/wwwroot/src/modules/mheads.vue b/Step/wwwroot/src/modules/mheads.vue
index a573c991..70a82863 100644
--- a/Step/wwwroot/src/modules/mheads.vue
+++ b/Step/wwwroot/src/modules/mheads.vue
@@ -1,5 +1,5 @@
-