Skip to content

Commit

Permalink
fix: 禁用 remoteapp 的快捷键
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeEirc committed Jul 4, 2022
1 parent 5f0533d commit cf44206
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions docker-compose.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ services:
- guacd
restart: always
volumes:
- ./data/drive:/opt/lion/data/drive:rw # /opt/lion/-> 本地项目路径
- ./data/record:/opt/lion/data/record:rw # /opt/lion/-> 本地项目路径
- ./data/:/opt/lion/data/:rw # /opt/lion/-> 本地项目路径, 修改 ./data 目录权限为777
2 changes: 1 addition & 1 deletion ui/src/components/GuacamoleConnect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export default {
{
title: this.$t('Shortcuts'),
icon: 'el-icon-position',
disabled: () => (!this.isRemoteApp && this.menuDisable),
disabled: () => (this.menuDisable || this.isRemoteApp),
content: this.combinationKeys,
itemClick: (keys) => (this.handleKeys(keys))
}
Expand Down

0 comments on commit cf44206

Please sign in to comment.