Skip to content

Commit

Permalink
Release 1.3.1 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdconn00 authored Mar 6, 2024
1 parent 21201f1 commit e4e559b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/admin/controllers/Activity.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
</span>
</div>
<div class="certifications training_request" v-if="controller.rating >= 0">
Controller has made <b>{{controller.totalRequests}}</b> training request(s) in the last 60 days
Controller has made <b>{{controller.totalRequests}}</b> training request(s) in the last 90 days
</div>
</div>
</router-link>
Expand Down Expand Up @@ -126,7 +126,7 @@ export default {
methods: {
async getActivity() {
const d = new Date();
this.chkDate = new Date(Date.UTC(d.getUTCFullYear(), d.getUTCMonth(), d.getUTCDate() - 61));
this.chkDate = new Date(Date.UTC(d.getUTCFullYear(), d.getUTCMonth(), d.getUTCDate() - 91));
const {data: reportData} = await zabApi.get('/stats/activity');
this.report = reportData.data;
},
Expand Down

0 comments on commit e4e559b

Please sign in to comment.