Skip to content
Snippets Groups Projects
Commit 66b59f27 authored by wakarimasen's avatar wakarimasen
Browse files

Fix daily average on accounts younger than a day

parent 7ee87c76
No related branches found
No related tags found
No related merge requests found
......@@ -79,9 +79,8 @@
return this.$store.state.users.currentUser
},
dailyAvg () {
return Math.round(
this.user.statuses_count / ((new Date() - new Date(this.user.created_at)) / (60 * 60 * 24 * 1000))
)
const days = Math.ceil((new Date() - new Date(this.user.created_at)) / (60 * 60 * 24 * 1000))
return Math.round(this.user.statuses_count / days)
}
},
methods: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment