diff options
| author | Henry Jameson <me@hjkos.com> | 2020-10-20 21:18:23 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-10-20 21:18:23 +0300 |
| commit | 046c60cb61bd585e2fb2850320d229ab0487d9ba (patch) | |
| tree | 00a2278ebc162d33745145cd728a72835cd0bd29 /src/components/post_status_form | |
| parent | e8650d3409aa34a0195629d2077bad68bcade439 (diff) | |
cancel -> times
Diffstat (limited to 'src/components/post_status_form')
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 6 | ||||
| -rw-r--r-- | src/components/post_status_form/post_status_form.vue | 10 |
2 files changed, 9 insertions, 7 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index 1267225d..e763baa8 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -18,7 +18,8 @@ import { faSmileBeam, faPollH, faUpload, - faBan + faBan, + faTimes } from '@fortawesome/free-solid-svg-icons' library.add( @@ -26,7 +27,8 @@ library.add( faSmileBeam, faPollH, faUpload, - faBan + faBan, + faTimes ) const buildMentionsString = ({ user, attentions = [] }, currentUser) => { diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index 9a5be689..7f7ac72f 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -40,7 +40,7 @@ class="button-icon dismiss" @click.prevent="dismissScopeNotice()" > - <i class="icon-cancel" /> + <FAIcon icon="times" /> </a> </p> <p @@ -52,7 +52,7 @@ class="button-icon dismiss" @click.prevent="dismissScopeNotice()" > - <i class="icon-cancel" /> + <FAIcon icon="times" /> </a> </p> <p @@ -64,7 +64,7 @@ class="button-icon dismiss" @click.prevent="dismissScopeNotice()" > - <i class="icon-cancel" /> + <FAIcon icon="times" /> </a> </p> <p @@ -285,7 +285,7 @@ > Error: {{ error }} <i - class="button-icon icon-cancel" + class="button-icon" icon="times" @click="clearError" /> </div> @@ -296,7 +296,7 @@ class="media-upload-wrapper" > <i - class="fa button-icon icon-cancel" + class="button-icon" icon="times" @click="removeMediaFile(file)" /> <attachment |
