summaryrefslogtreecommitdiff
path: root/src/client/components/note.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-02-22 06:57:54 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2020-02-22 06:57:54 +0900
commit50359dbaf4728b60c56e9bf229dd3acb3a9c7dee (patch)
treecc79c7110070bc8cb873b80bacbe317096d74444 /src/client/components/note.vue
parentFix style (diff)
downloadsharkey-50359dbaf4728b60c56e9bf229dd3acb3a9c7dee.tar.gz
sharkey-50359dbaf4728b60c56e9bf229dd3acb3a9c7dee.tar.bz2
sharkey-50359dbaf4728b60c56e9bf229dd3acb3a9c7dee.zip
Resolve #6053
Diffstat (limited to 'src/client/components/note.vue')
-rw-r--r--src/client/components/note.vue7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/client/components/note.vue b/src/client/components/note.vue
index 4d325f2806..410cb1d49e 100644
--- a/src/client/components/note.vue
+++ b/src/client/components/note.vue
@@ -85,7 +85,7 @@
<script lang="ts">
import Vue from 'vue';
-import { faBolt, faTimes, faBullhorn, faStar, faLink, faExternalLinkSquareAlt, faPlus, faMinus, faRetweet, faReply, faReplyAll, faEllipsisH, faHome, faUnlock, faEnvelope, faThumbtack, faBan, faQuoteRight } from '@fortawesome/free-solid-svg-icons';
+import { faBolt, faTimes, faBullhorn, faStar, faLink, faExternalLinkSquareAlt, faPlus, faMinus, faRetweet, faReply, faReplyAll, faEllipsisH, faHome, faUnlock, faEnvelope, faThumbtack, faBan, faQuoteRight, faInfoCircle } from '@fortawesome/free-solid-svg-icons';
import { faCopy, faTrashAlt, faEye, faEyeSlash } from '@fortawesome/free-regular-svg-icons';
import { parse } from '../../mfm/parse';
import { sum, unique } from '../../prelude/array';
@@ -489,6 +489,11 @@ export default Vue.extend({
noteId: this.appearNote.id
});
menu = [{
+ type: 'link',
+ icon: faInfoCircle,
+ text: this.$t('details'),
+ to: '/notes/' + this.appearNote.id
+ }, null, {
icon: faCopy,
text: this.$t('copyContent'),
action: this.copyContent