summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-03-11 20:12:44 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-03-11 20:12:44 +0900
commit3dd5f313b7be84cb33b661c4f303dd8a19972fe0 (patch)
tree919c6f5ad49e704d8cc963e10cc4c94125845249 /src
parentAdd icon :art: (diff)
downloadsharkey-3dd5f313b7be84cb33b661c4f303dd8a19972fe0.tar.gz
sharkey-3dd5f313b7be84cb33b661c4f303dd8a19972fe0.tar.bz2
sharkey-3dd5f313b7be84cb33b661c4f303dd8a19972fe0.zip
Add icons :art:
Diffstat (limited to 'src')
-rw-r--r--src/client/app/common/views/components/settings/profile.vue14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/client/app/common/views/components/settings/profile.vue b/src/client/app/common/views/components/settings/profile.vue
index 090d2a2469..d5ae8591ae 100644
--- a/src/client/app/common/views/components/settings/profile.vue
+++ b/src/client/app/common/views/components/settings/profile.vue
@@ -56,7 +56,7 @@
</section>
<section>
- <header>{{ $t('advanced') }}</header>
+ <header><fa :icon="faCogs"/> {{ $t('advanced') }}</header>
<div>
<ui-switch v-model="isCat" @change="save(false)">{{ $t('is-cat') }}</ui-switch>
@@ -66,7 +66,7 @@
</section>
<section>
- <header>{{ $t('privacy') }}</header>
+ <header><fa :icon="faUnlockAlt"/> {{ $t('privacy') }}</header>
<div>
<ui-switch v-model="isLocked" @change="save(false)">{{ $t('is-locked') }}</ui-switch>
@@ -76,7 +76,7 @@
</section>
<section v-if="enableEmail">
- <header>{{ $t('email') }}</header>
+ <header><fa :icon="faEnvelope"/> {{ $t('email') }}</header>
<div>
<template v-if="$store.state.i.email != null">
@@ -89,7 +89,7 @@
</section>
<section>
- <header>{{ $t('export-and-import') }}</header>
+ <header><fa :icon="faBoxes"/> {{ $t('export-and-import') }}</header>
<div>
<ui-select v-model="exportTarget">
@@ -122,8 +122,8 @@ import { apiUrl, host } from '../../../../config';
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';
+import { faDownload, faUpload, faUnlockAlt, faBoxes, faCogs } from '@fortawesome/free-solid-svg-icons';
+import { faSave, faEnvelope } from '@fortawesome/free-regular-svg-icons';
export default Vue.extend({
i18n: i18n('common/views/components/profile-editor.vue'),
@@ -152,7 +152,7 @@ export default Vue.extend({
avatarUploading: false,
bannerUploading: false,
exportTarget: 'notes',
- faDownload, faUpload, faSave
+ faDownload, faUpload, faSave, faEnvelope, faUnlockAlt, faBoxes, faCogs
};
},