diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-10 03:31:13 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-10 03:31:13 +0900 |
| commit | 6630ca595c56b32d544638e693c0621a6eb9222d (patch) | |
| tree | 9b8212a63308eac7fe53738f72d67ad873ad7776 /src/client/app | |
| parent | Fix bug (diff) | |
| download | misskey-6630ca595c56b32d544638e693c0621a6eb9222d.tar.gz misskey-6630ca595c56b32d544638e693c0621a6eb9222d.tar.bz2 misskey-6630ca595c56b32d544638e693c0621a6eb9222d.zip | |
:art:
Diffstat (limited to 'src/client/app')
| -rw-r--r-- | src/client/app/common/views/components/note-menu.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/app/common/views/components/note-menu.vue b/src/client/app/common/views/components/note-menu.vue index 889f63779f..27a49a6536 100644 --- a/src/client/app/common/views/components/note-menu.vue +++ b/src/client/app/common/views/components/note-menu.vue @@ -13,21 +13,25 @@ export default Vue.extend({ items() { const items = []; items.push({ + icon: '%fa:star%', text: '%i18n:@favorite%', action: this.favorite }); if (this.note.userId == this.$store.state.i.id) { items.push({ + icon: '%fa:thumbtack%', text: '%i18n:@pin%', action: this.pin }); items.push({ + icon: '%fa:trash-alt R%', text: '%i18n:@delete%', action: this.del }); } if (this.note.uri) { items.push({ + icon: '%fa:external-link-square-alt%', text: '%i18n:@remote%', action: () => { window.open(this.note.uri, '_blank'); |