diff options
| author | Roger Braun <roger@rogerbraun.net> | 2017-04-24 20:34:06 +0200 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2017-04-24 20:34:06 +0200 |
| commit | 32d1d2178a82fef48de2b8eebe911313c68c19a3 (patch) | |
| tree | 33aa1106d978d22402b3b32b515b0d7067224f65 | |
| parent | 3fdc42099028e4880b2b523cb056d92810ff3e89 (diff) | |
Make linter happy.
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index cba080ea..5dd14df5 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -2,7 +2,7 @@ import statusPoster from '../../services/status_poster/status_poster.service.js' import MediaUpload from '../media_upload/media_upload.vue' import fileTypeService from '../../services/file_type/file_type.service.js' -import { merge, reject, map, uniqBy } from 'lodash' +import { reject, map, uniqBy } from 'lodash' const buildMentionsString = ({user, attentions}, currentUser) => { let allAttentions = [...attentions] @@ -19,7 +19,6 @@ const buildMentionsString = ({user, attentions}, currentUser) => { return mentions.join(' ') + ' ' } - const PostStatusForm = { props: [ 'replyTo', |
