We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5584f61 commit bdf7827Copy full SHA for bdf7827
frontend/src/views/app/Browse.vue
@@ -50,11 +50,13 @@ export default {
50
},
51
recommendationsAnalysisDone: false,
52
showCount: 10,
53
+ firstTimeBrowsing: true,
54
}),
55
methods: {
56
async fetchUsers() {
- if (this.recommendationsFromSettingUp) {
57
+ if (this.firstTimeBrowsing && this.recommendationsFromSettingUp) {
58
this.recommendations = this.recommendationsFromSettingUp;
59
+ this.firstTimeBrowsing = false;
60
} else {
61
const recommendationsRequest = await this.$http.get('/recommendations');
62
this.recommendations = recommendationsRequest.data.recommendations;
0 commit comments