fix export column

This commit is contained in:
2024-10-06 18:38:07 +02:00
parent b6bff9ff7e
commit 712cdec554
3 changed files with 4 additions and 4 deletions
@@ -198,7 +198,7 @@ export class PageManagement implements OnInit {
export() {
if (this.entries.total) {
let rows = [[this.i18n.get('user.username'), this.i18n.get('turnover.price'), this.i18n.get('turnover.price.suffix')]];
let rows = [[this.i18n.get('user.username'), this.i18n.get('turnover.price'), this.i18n.get('turnover.timeInvestment')]];
this.entries.results.forEach(result => {
rows[rows.length] = [result[0], result[1], [result[2]]]