aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2018-08-06 09:52:07 +0300
committerHenry Jameson <me@hjkos.com>2018-08-06 09:52:07 +0300
commitd5efa10946239dc1c9e0aa646dc1238a2737c456 (patch)
tree6bc47fe6617b754678193329392733e4a61e3d6b /src
parent976444064f19fbfc1a4085b421196f36d690d820 (diff)
hopefully, fix linter
Diffstat (limited to 'src')
-rw-r--r--src/components/post_status_form/post_status_form.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js
index aa9cd160..34c02325 100644
--- a/src/components/post_status_form/post_status_form.js
+++ b/src/components/post_status_form/post_status_form.js
@@ -87,10 +87,10 @@ const PostStatusForm = {
return false
}
return map(take(matchedEmoji, 5), ({shortcode, image_url, utf}, index) => ({
- // eslint-disable-next-line camelcase
screen_name: `:${shortcode}:`,
name: '',
utf: utf || '',
+ // eslint-disable-next-line camelcase
img: utf ? '' : this.$store.state.config.server + image_url,
highlighted: index === this.highlighted
}))