diff --git a/webapp/components/features/FollowList/FollowList.vue b/webapp/components/features/FollowList/FollowList.vue index 3f5791438..be8c35e1a 100644 --- a/webapp/components/features/FollowList/FollowList.vue +++ b/webapp/components/features/FollowList/FollowList.vue @@ -13,7 +13,7 @@ /> this.connections.length + }, connectionsClass() { - const overflow = this.connections.length > 7 ? ' --overflow' : '' - return `connections${overflow}` + return `connections${this.hasMore ? '' : ' --overflow'}` }, filteredConnections() { if (!this.filter) {