From 48ce904d1638387a295207817bd3626d8a6e8e87 Mon Sep 17 00:00:00 2001 From: HardiReady Date: Tue, 17 Jul 2018 12:12:17 +0200 Subject: [PATCH] Fix csv export after table column order change (CC-46) --- .../src/app/statistic/war/scoreboard/scoreboard.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/src/app/statistic/war/scoreboard/scoreboard.component.ts b/static/src/app/statistic/war/scoreboard/scoreboard.component.ts index 8c99e6a..5bdb621 100644 --- a/static/src/app/statistic/war/scoreboard/scoreboard.component.ts +++ b/static/src/app/statistic/war/scoreboard/scoreboard.component.ts @@ -113,11 +113,11 @@ export class ScoreboardComponent implements OnChanges { csvOut += player.fraction + ','; csvOut += player.kill + ','; csvOut += player.friendlyFire + ','; + csvOut += player.revive + ','; + csvOut += player.flagTouch + ','; csvOut += player.vehicleLight + ','; csvOut += player.vehicleHeavy + ','; csvOut += player.vehicleAir + ','; - csvOut += player.revive + ','; - csvOut += player.flagTouch + ','; csvOut += player.death + ','; csvOut += player.respawn; }