Skip to content

Commit 9c9b564

Browse files
committed
bloked to blocked in history
1 parent 562b7b7 commit 9c9b564

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/views/app/History.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export default {
7575
this.recommendations = recommendationsRequest.data.liked_me;
7676
} else if (request === 'Whom I blocked') {
7777
const recommendationsRequest = await this.$http.get('/history/blocked');
78-
this.recommendations = recommendationsRequest.data.bloked;
78+
this.recommendations = recommendationsRequest.data.blocked;
7979
}
8080
this.recommendations = Object.values(this.recommendations.reduce((acc, cur) => Object.assign(acc, { [cur.id]: cur }), {}));
8181
this.recommendations.sort((a, b) => a.distance - b.distance);

0 commit comments

Comments
 (0)