diff --git a/components/Author.vue b/components/Author.vue
index f1f57113b..5f1ac9980 100644
--- a/components/Author.vue
+++ b/components/Author.vue
@@ -107,6 +107,7 @@
diff --git a/components/FollowButton.vue b/components/FollowButton.vue
index 3540726d2..0e02f963f 100644
--- a/components/FollowButton.vue
+++ b/components/FollowButton.vue
@@ -1,6 +1,6 @@
{
slug
avatar
followedByCount
+ followedByCurrentUser
contributionsCount
commentsCount
badges {
@@ -41,12 +42,14 @@ export default app => {
}
}
followedByCount
+ followedByCurrentUser
followedBy(first: 7) {
id
name
slug
avatar
followedByCount
+ followedByCurrentUser
contributionsCount
commentsCount
badges {
diff --git a/pages/index.vue b/pages/index.vue
index 7bc85b3a4..f4785b3ac 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -108,6 +108,7 @@ export default {
shoutedCount
commentsCount
followedByCount
+ followedByCurrentUser
location {
name: name${this.$i18n.locale().toUpperCase()}
}
diff --git a/pages/post/_slug/index.vue b/pages/post/_slug/index.vue
index 68655a31f..32c9609ef 100644
--- a/pages/post/_slug/index.vue
+++ b/pages/post/_slug/index.vue
@@ -29,6 +29,7 @@
@@ -188,6 +189,7 @@ export default {
contributionsCount
commentsCount
followedByCount
+ followedByCurrentUser
location {
name: name${this.$i18n.locale().toUpperCase()}
}
@@ -215,6 +217,7 @@ export default {
contributionsCount
commentsCount
followedByCount
+ followedByCurrentUser
location {
name: name${this.$i18n.locale().toUpperCase()}
}
@@ -231,6 +234,7 @@ export default {
icon
}
shoutedCount
+ shoutedByCurrentUser
}
}
`)
diff --git a/pages/post/_slug/more-info.vue b/pages/post/_slug/more-info.vue
index 847975757..d4de5f6f3 100644
--- a/pages/post/_slug/more-info.vue
+++ b/pages/post/_slug/more-info.vue
@@ -109,6 +109,7 @@ export default {
avatar
contributionsCount
followedByCount
+ followedByCurrentUser
commentsCount
location {
name: name${this.$i18n.locale().toUpperCase()}
diff --git a/pages/profile/_slug.vue b/pages/profile/_slug.vue
index 98d3b9f48..e6d0f473b 100644
--- a/pages/profile/_slug.vue
+++ b/pages/profile/_slug.vue
@@ -86,6 +86,7 @@