From 0f5e651179fdb9e5e539fea6b13bb028b498710c Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 8 Apr 2019 14:20:31 -0600 Subject: [PATCH] Update SearchResult component --- resources/assets/js/components/SearchResults.vue | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/resources/assets/js/components/SearchResults.vue b/resources/assets/js/components/SearchResults.vue index a930387ff..66eeabd64 100644 --- a/resources/assets/js/components/SearchResults.vue +++ b/resources/assets/js/components/SearchResults.vue @@ -56,11 +56,11 @@

{{profile.value}}

- +

@@ -139,12 +139,11 @@ export default { followProfile(id) { // todo: finish AP Accept handling to enable remote follows - return; - // axios.post('/i/follow', { - // item: id - // }).then(res => { - // window.location.href = window.location.href; - // }); + axios.post('/i/follow', { + item: id + }).then(res => { + window.location.href = window.location.href; + }); }, }