diff --git a/webapp/components/_new/features/SearchResults/SearchResults.spec.js b/webapp/components/_new/features/SearchResults/SearchResults.spec.js index 198c12b471..b1886a754f 100644 --- a/webapp/components/_new/features/SearchResults/SearchResults.spec.js +++ b/webapp/components/_new/features/SearchResults/SearchResults.spec.js @@ -105,7 +105,7 @@ describe('SearchResults', () => { }) it('has post tab inactive after emitting switch-tab', async () => { - wrapper.find('.tab-navigation').vm.$emit('switch-tab', 'User') // emits direct from tab component to search results + wrapper.find('.tab-navigation').vm.$emit('switch-tab', 'User') // emits direct from tab component to search results await wrapper.vm.$nextTick() await expect(wrapper.find('[data-test="Post-tab"]').classes('--active')).toBe(false) }) diff --git a/webapp/mixins/postListActions.js b/webapp/mixins/postListActions.js index 8fbadc9470..57fd28bd16 100644 --- a/webapp/mixins/postListActions.js +++ b/webapp/mixins/postListActions.js @@ -12,7 +12,7 @@ export default { .mutate({ mutation: PostMutations().pinPost, variables: { - id: post.id + id: post.id, }, }) .then(() => { @@ -26,7 +26,7 @@ export default { .mutate({ mutation: PostMutations().unpinPost, variables: { - id: post.id + id: post.id, }, }) .then(() => { diff --git a/webapp/pages/post/_id/_slug/more-info.vue b/webapp/pages/post/_id/_slug/more-info.vue index 1b5336c021..114689e846 100644 --- a/webapp/pages/post/_id/_slug/more-info.vue +++ b/webapp/pages/post/_id/_slug/more-info.vue @@ -27,7 +27,9 @@ diff --git a/webapp/pages/profile/_id/_slug.vue b/webapp/pages/profile/_id/_slug.vue index 54b922243a..4949573478 100644 --- a/webapp/pages/profile/_id/_slug.vue +++ b/webapp/pages/profile/_id/_slug.vue @@ -187,7 +187,6 @@ import { profilePagePosts } from '~/graphql/PostQuery' import UserQuery from '~/graphql/User' import { muteUser, unmuteUser } from '~/graphql/settings/MutedUsers' import { blockUser, unblockUser } from '~/graphql/settings/BlockedUsers' -import PostMutations from '~/graphql/PostMutations' import UpdateQuery from '~/components/utils/UpdateQuery' import SocialMedia from '~/components/SocialMedia/SocialMedia'