diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-08-13 23:53:15 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-13 23:53:15 +0900 |
| commit | a3cf63823fb81b4e9fef373d4ca63b3a4d0aaa42 (patch) | |
| tree | bb0c3ce6963afeaaafed796136b6b91c9c88ecb8 /src | |
| parent | Merge pull request #2188 from Tosuke/patch1 (diff) | |
| parent | Hide Unimplemented button (diff) | |
| download | misskey-a3cf63823fb81b4e9fef373d4ca63b3a4d0aaa42.tar.gz misskey-a3cf63823fb81b4e9fef373d4ca63b3a4d0aaa42.tar.bz2 misskey-a3cf63823fb81b4e9fef373d4ca63b3a4d0aaa42.zip | |
Merge pull request #2189 from syuilo/patch-1
Hide unimplemented button
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/components/drive.file.vue | 12 | ||||
| -rw-r--r-- | src/client/app/desktop/views/components/drive.folder.vue | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/src/client/app/desktop/views/components/drive.file.vue b/src/client/app/desktop/views/components/drive.file.vue index 6541a8f21f..55218625c1 100644 --- a/src/client/app/desktop/views/components/drive.file.vue +++ b/src/client/app/desktop/views/components/drive.file.vue @@ -99,7 +99,7 @@ export default Vue.extend({ text: '%i18n:@contextmenu.set-as-banner%', action: this.setAsBanner }] - }, { + }, /*{ type: 'nest', text: '%i18n:@contextmenu.open-in-app%', menu: [{ @@ -107,11 +107,11 @@ export default Vue.extend({ text: '%i18n:@contextmenu.add-app%...', action: this.addApp }] - }], { - closed: () => { - this.isContextmenuShowing = false; - } - }); + }*/], { + closed: () => { + this.isContextmenuShowing = false; + } + }); }, onDragstart(e) { diff --git a/src/client/app/desktop/views/components/drive.folder.vue b/src/client/app/desktop/views/components/drive.folder.vue index e8077f9e3d..83880fef5c 100644 --- a/src/client/app/desktop/views/components/drive.folder.vue +++ b/src/client/app/desktop/views/components/drive.folder.vue @@ -67,16 +67,16 @@ export default Vue.extend({ text: '%i18n:@contextmenu.rename%', icon: '%fa:i-cursor%', action: this.rename - }, null, { + }/*, null, { type: 'item', text: '%i18n:common.delete%', icon: '%fa:R trash-alt%', action: this.deleteFolder - }], { - closed: () => { - this.isContextmenuShowing = false; - } - }); + }*/], { + closed: () => { + this.isContextmenuShowing = false; + } + }); }, onMouseover() { |