diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-03-11 20:07:27 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-03-11 20:07:27 +0900 |
| commit | 883962c393efe209645ad2d6245484eb9432950a (patch) | |
| tree | 06f3b65e0dfd52cb89826ff08d352b4ae22094aa /src | |
| parent | ✨🌎✨ A federated blogging platform ✨🚀✨ (diff) | |
| download | misskey-883962c393efe209645ad2d6245484eb9432950a.tar.gz misskey-883962c393efe209645ad2d6245484eb9432950a.tar.bz2 misskey-883962c393efe209645ad2d6245484eb9432950a.zip | |
Add icon :art:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/common/views/components/settings/profile.vue | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/client/app/common/views/components/settings/profile.vue b/src/client/app/common/views/components/settings/profile.vue index c49b465ce3..090d2a2469 100644 --- a/src/client/app/common/views/components/settings/profile.vue +++ b/src/client/app/common/views/components/settings/profile.vue @@ -51,7 +51,7 @@ <template #desc v-if="bannerUploading">{{ $t('uploading') }}<mk-ellipsis/></template> </ui-input> - <ui-button @click="save(true)">{{ $t('save') }}</ui-button> + <ui-button @click="save(true)"><fa :icon="faSave"/> {{ $t('save') }}</ui-button> </ui-form> </section> @@ -84,7 +84,7 @@ <ui-info v-else warn>{{ $t('email-not-verified') }}</ui-info> </template> <ui-input v-model="email" type="email"><span>{{ $t('email-address') }}</span></ui-input> - <ui-button @click="updateEmail()">{{ $t('save') }}</ui-button> + <ui-button @click="updateEmail()"><fa :icon="faSave"/> {{ $t('save') }}</ui-button> </div> </section> @@ -123,6 +123,7 @@ import { toUnicode } from 'punycode'; import langmap from 'langmap'; import { unique } from '../../../../../../prelude/array'; import { faDownload, faUpload } from '@fortawesome/free-solid-svg-icons'; +import { faSave } from '@fortawesome/free-regular-svg-icons'; export default Vue.extend({ i18n: i18n('common/views/components/profile-editor.vue'), @@ -151,7 +152,7 @@ export default Vue.extend({ avatarUploading: false, bannerUploading: false, exportTarget: 'notes', - faDownload, faUpload + faDownload, faUpload, faSave }; }, |