diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-17 06:23:18 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-17 06:23:18 +0900 |
| commit | 26b3a14a637b19d4590ac804168e5cf736ea3e7f (patch) | |
| tree | befa52ab94a6d80616d13a2a66b814703c010645 /src/client/components | |
| parent | Update app.vue (diff) | |
| download | misskey-26b3a14a637b19d4590ac804168e5cf736ea3e7f.tar.gz misskey-26b3a14a637b19d4590ac804168e5cf736ea3e7f.tar.bz2 misskey-26b3a14a637b19d4590ac804168e5cf736ea3e7f.zip | |
Clean up
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/drive.file.vue | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/client/components/drive.file.vue b/src/client/components/drive.file.vue index 22fc8c6fb7..0770241fb8 100644 --- a/src/client/components/drive.file.vue +++ b/src/client/components/drive.file.vue @@ -83,17 +83,14 @@ export default Vue.extend({ } else { this.$root.menu({ items: [{ - type: 'item', text: this.$t('rename'), icon: faICursor, action: this.rename }, { - type: 'item', text: this.file.isSensitive ? this.$t('unmarkAsSensitive') : this.$t('markAsSensitive'), icon: this.file.isSensitive ? faEye : faEyeSlash, action: this.toggleSensitive }, null, { - type: 'item', text: this.$t('copyUrl'), icon: faLink, action: this.copyUrl @@ -105,7 +102,6 @@ export default Vue.extend({ icon: faDownload, download: this.file.name }, null, { - type: 'item', text: this.$t('delete'), icon: faTrashAlt, action: this.deleteFile @@ -113,11 +109,9 @@ export default Vue.extend({ type: 'nest', text: this.$t('contextmenu.else-files'), menu: [{ - type: 'item', text: this.$t('contextmenu.set-as-avatar'), action: this.setAsAvatar }, { - type: 'item', text: this.$t('contextmenu.set-as-banner'), action: this.setAsBanner }] |