diff --git a/src/views/settings/Applet/index.vue b/src/views/settings/Applet/index.vue index a457a6b87..3da9ecf77 100644 --- a/src/views/settings/Applet/index.vue +++ b/src/views/settings/Applet/index.vue @@ -41,14 +41,14 @@ export default { title: this.$t('VirtualApp'), name: 'VirtualApp', hidden: () => { - return !store.getters.publicSettings['VIRTUAL_APP_ENABLED'] || !this.$store.getters.hasValidLicense + return !store.getters.publicSettings['VIRTUAL_APP_ENABLED'] || !this.$store.getters.hasValidLicense || !this.$hasPerm('terminal.view_virtualapp') } }, { title: this.$t('AppProvider'), name: 'AppProvider', hidden: () => { - return !store.getters.publicSettings['VIRTUAL_APP_ENABLED'] || !this.$store.getters.hasValidLicense + return !store.getters.publicSettings['VIRTUAL_APP_ENABLED'] || !this.$store.getters.hasValidLicense || !this.$hasPerm('terminal.view_appprovider') } } ]