From 68348c96044a2fbf3635416bb5afaa792d899a7a Mon Sep 17 00:00:00 2001 From: Nicola Carminati Date: Wed, 7 Nov 2018 17:05:44 +0100 Subject: [PATCH] Fix Last commit --- Step/wwwroot/src/modules/under-the-hood/auto-menu.vue | 1 + Step/wwwroot/src/modules/under-the-hood/jog-menu.vue | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Step/wwwroot/src/modules/under-the-hood/auto-menu.vue b/Step/wwwroot/src/modules/under-the-hood/auto-menu.vue index 80c88e50..361a32d3 100644 --- a/Step/wwwroot/src/modules/under-the-hood/auto-menu.vue +++ b/Step/wwwroot/src/modules/under-the-hood/auto-menu.vue @@ -25,6 +25,7 @@ export default { return false; }, isKeyActive(id) { + if(this.checkSecurityDisabled('ncSoftkeys')) return false; let r = this.$store.getters.getNcSoftKeyStatus(id); if (r) return r.active; return false; diff --git a/Step/wwwroot/src/modules/under-the-hood/jog-menu.vue b/Step/wwwroot/src/modules/under-the-hood/jog-menu.vue index 1be87272..18915c9c 100644 --- a/Step/wwwroot/src/modules/under-the-hood/jog-menu.vue +++ b/Step/wwwroot/src/modules/under-the-hood/jog-menu.vue @@ -1,6 +1,6 @@