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
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "buntspecht-web", "name": "buntspecht-web",
"version": "0.4.1", "version": "0.4.2",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "buntspecht-web", "name": "buntspecht-web",
"version": "0.4.1", "version": "0.4.2",
"license": "AGPL3", "license": "AGPL3",
"dependencies": { "dependencies": {
"@angular/animations": "^18.2.7", "@angular/animations": "^18.2.7",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "buntspecht-web", "name": "buntspecht-web",
"version": "0.4.1", "version": "0.4.2",
"license": "AGPL3", "license": "AGPL3",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
@@ -198,7 +198,7 @@ export class PageManagement implements OnInit {
export() { export() {
if (this.entries.total) { 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 => { this.entries.results.forEach(result => {
rows[rows.length] = [result[0], result[1], [result[2]]] rows[rows.length] = [result[0], result[1], [result[2]]]