summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-05-10 17:19:53 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-05-10 17:19:53 +0900
commit7231f5ff0b291d68aef17ad1e820449b88e88d65 (patch)
tree051564909f5a528335094fb796947acab2a9d143 /src
parentfix(client): Fix poll vote notification (diff)
downloadmisskey-7231f5ff0b291d68aef17ad1e820449b88e88d65.tar.gz
misskey-7231f5ff0b291d68aef17ad1e820449b88e88d65.tar.bz2
misskey-7231f5ff0b291d68aef17ad1e820449b88e88d65.zip
chore(client): :art:
Diffstat (limited to 'src')
-rw-r--r--src/client/components/post-form.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/components/post-form.vue b/src/client/components/post-form.vue
index d7bd105d80..1dbca23857 100644
--- a/src/client/components/post-form.vue
+++ b/src/client/components/post-form.vue
@@ -39,7 +39,7 @@
<x-uploader ref="uploader" @uploaded="attachMedia" @change="onChangeUploadings"/>
<footer>
<button class="_button" @click="chooseFileFrom"><fa :icon="faPhotoVideo"/></button>
- <button class="_button" @click="poll = !poll" :class="{ active: poll }"><fa :icon="faChartPie"/></button>
+ <button class="_button" @click="poll = !poll" :class="{ active: poll }"><fa :icon="faPollH"/></button>
<button class="_button" @click="useCw = !useCw" :class="{ active: useCw }"><fa :icon="faEyeSlash"/></button>
<button class="_button" @click="insertMention"><fa :icon="faAt"/></button>
<button class="_button" @click="insertEmoji"><fa :icon="faLaughSquint"/></button>
@@ -52,7 +52,7 @@
<script lang="ts">
import Vue from 'vue';
-import { faReply, faQuoteRight, faPaperPlane, faTimes, faUpload, faChartPie, faGlobe, faHome, faUnlock, faEnvelope, faPlus, faPhotoVideo, faCloud, faLink, faAt, faBiohazard } from '@fortawesome/free-solid-svg-icons';
+import { faReply, faQuoteRight, faPaperPlane, faTimes, faUpload, faPollH, faGlobe, faHome, faUnlock, faEnvelope, faPlus, faPhotoVideo, faCloud, faLink, faAt, faBiohazard } from '@fortawesome/free-solid-svg-icons';
import { faEyeSlash, faLaughSquint } from '@fortawesome/free-regular-svg-icons';
import insertTextAtCursor from 'insert-text-at-cursor';
import { length } from 'stringz';
@@ -135,7 +135,7 @@ export default Vue.extend({
draghover: false,
quoteId: null,
recentHashtags: JSON.parse(localStorage.getItem('hashtags') || '[]'),
- faReply, faQuoteRight, faPaperPlane, faTimes, faUpload, faChartPie, faGlobe, faHome, faUnlock, faEnvelope, faEyeSlash, faLaughSquint, faPlus, faPhotoVideo, faCloud, faLink, faAt, faBiohazard
+ faReply, faQuoteRight, faPaperPlane, faTimes, faUpload, faPollH, faGlobe, faHome, faUnlock, faEnvelope, faEyeSlash, faLaughSquint, faPlus, faPhotoVideo, faCloud, faLink, faAt, faBiohazard
};
},