We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 996cf5d commit fbddb00Copy full SHA for fbddb00
frontend/src/views/app/History.vue
@@ -6,7 +6,7 @@
6
<div class="flex items-center justify-center md:justify-start w-full mb-4">
7
<h1
8
class="text-3xl sm:text-5xl my-4 inline-block text-center leading-none onboarding-sub-container-content-heading">
9
- {{filteredCount}}</h1>
+ {{filteredCount || 0}}</h1>
10
<DropdownDisplayChoiceHistory
11
v-on:save-single-choice="updateHistory"
12
class="inline-block ml-4"
@@ -129,6 +129,7 @@ export default {
129
if (key === 'history') {
130
this.browseAgain();
131
this.fetchUsers(value);
132
+ this.filteredCount = this.recommendations.count;
133
}
134
},
135
filteredCountSave(...args) {
0 commit comments