summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-02-06 17:10:40 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-02-06 17:10:40 +0900
commit4d868aaf1fcb2af603795658586335dd35cfdd1e (patch)
treec342922725a18da58c38775d013bf953f54b9133 /src/client
parent[Client] リアクション一覧のマージンを調整 (diff)
downloadmisskey-4d868aaf1fcb2af603795658586335dd35cfdd1e.tar.gz
misskey-4d868aaf1fcb2af603795658586335dd35cfdd1e.tar.bz2
misskey-4d868aaf1fcb2af603795658586335dd35cfdd1e.zip
:art:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/app/common/views/components/profile-editor.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client/app/common/views/components/profile-editor.vue b/src/client/app/common/views/components/profile-editor.vue
index d745e7d291..a3b1c6d870 100644
--- a/src/client/app/common/views/components/profile-editor.vue
+++ b/src/client/app/common/views/components/profile-editor.vue
@@ -92,7 +92,7 @@
<header>{{ $t('export') }}</header>
<div>
- <ui-button @click="exportNotes()">{{ $t('export-notes') }}</ui-button>
+ <ui-button @click="exportNotes()"><fa :icon="faDownload"/> {{ $t('export-notes') }}</ui-button>
</div>
</section>
</ui-card>
@@ -105,6 +105,7 @@ import { apiUrl, host } from '../../../config';
import { toUnicode } from 'punycode';
import langmap from 'langmap';
import { unique } from '../../../../../prelude/array';
+import { faDownload } from '@fortawesome/free-solid-svg-icons';
export default Vue.extend({
i18n: i18n('common/views/components/profile-editor.vue'),
@@ -131,7 +132,8 @@ export default Vue.extend({
autoAcceptFollowed: false,
saving: false,
avatarUploading: false,
- bannerUploading: false
+ bannerUploading: false,
+ faDownload
};
},