Skip to content

Commit

Permalink
fix: revert recent activity score while backend is fixed MP-674
Browse files Browse the repository at this point in the history
  • Loading branch information
emuvente committed Aug 13, 2024
1 parent 7c89314 commit b8ed5e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/LendingTeams/TeamListing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
id="categorySort" v-model="teamSort"
@update:modelValue="pushChangesToUrl"
>
<option value="recentActivityScore">
<!-- <option value="recentActivityScore">
Recent Activity
</option>
</option> -->
<option value="newest">
Newest
</option>
Expand Down Expand Up @@ -330,7 +330,7 @@ export default {
teamCategories,
teamCategory: '',
teamOption: '',
teamSort: 'recentActivityScore',
teamSort: 'overallLoanedAmount', // 'recentActivityScore',
teams: [],
totalCount: 0,
queryString: '',
Expand Down Expand Up @@ -428,7 +428,7 @@ export default {
this.offset = getPageOffset(query, this.limit);
this.teamCategory = query.category ?? '';
this.teamOption = query.teamOption ?? '';
this.teamSort = query.teamSort ?? 'recentActivityScore';
this.teamSort = query.teamSort ?? 'overallLoanedAmount'; // 'recentActivityScore';
this.queryString = query.queryString ?? '';
},
async getTeams({
Expand Down

0 comments on commit b8ed5e6

Please sign in to comment.