From 7231f5ff0b291d68aef17ad1e820449b88e88d65 Mon Sep 17 00:00:00 2001 From: syuilo <syuilotan@yahoo.co.jp> Date: Sun, 10 May 2020 17:19:53 +0900 Subject: [PATCH] chore(client): :art: --- src/client/components/post-form.vue | 6 +++--- 1 file 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 }; },