mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
Fix heatmap total contributions (#14141)
This commit is contained in:
parent
5a94db37ed
commit
2c8d302eb1
1 changed files with 10 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div id="user-heatmap">
|
||||
<div class="total-contributions">
|
||||
{{ values.length }} contributions in the last 12 months
|
||||
{{ sum }} contributions in the last 12 months
|
||||
</div>
|
||||
<calendar-heatmap
|
||||
:locale="locale"
|
||||
|
@ -40,6 +40,15 @@ export default {
|
|||
no_contributions: 'No contributions',
|
||||
},
|
||||
}),
|
||||
computed: {
|
||||
sum() {
|
||||
let s = 0;
|
||||
for (let i = 0; i < this.values.length; i++) {
|
||||
s += this.values[i].count;
|
||||
}
|
||||
return s;
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<style scoped/>
|
||||
|
|
Loading…
Reference in a new issue