From 75f52843ebaa24af4653f2868a4864798c067eca Mon Sep 17 00:00:00 2001 From: Ashutosh Kumar Date: Fri, 15 Dec 2023 02:23:02 +0530 Subject: [PATCH 1/2] switched kast and util damage --- src/components/PlayerStatTable.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/PlayerStatTable.vue b/src/components/PlayerStatTable.vue index ceb4776..dcbb220 100644 --- a/src/components/PlayerStatTable.vue +++ b/src/components/PlayerStatTable.vue @@ -164,10 +164,10 @@ export default { value: "hsp", groupable: false }, - { - text: this.$t("PlayerStats.KAST"), - value: "kast", - groupable: false + { + text: this.$t("PlayerStats.UtilDamage"), + value: "util_damage" + groupable: false }, { text: this.$t("PlayerStats.MVP"), @@ -215,8 +215,8 @@ export default { value: "friendlies_flashed" }, { - text: this.$t("PlayerStats.UtilDamage"), - value: "util_damage" + text: this.$t("PlayerStats.KAST"), + value: "kast", }, { text: this.$t("PlayerStats.KnifeKills"), From 0e7ca21ef150b3aa2a04cd4ab91e20939d818d7c Mon Sep 17 00:00:00 2001 From: Ashutosh Kumar Date: Fri, 15 Dec 2023 20:54:32 +0530 Subject: [PATCH 2/2] syntax error fix --- src/components/PlayerStatTable.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/PlayerStatTable.vue b/src/components/PlayerStatTable.vue index dcbb220..7488b5e 100644 --- a/src/components/PlayerStatTable.vue +++ b/src/components/PlayerStatTable.vue @@ -166,8 +166,8 @@ export default { }, { text: this.$t("PlayerStats.UtilDamage"), - value: "util_damage" - groupable: false + value: "util_damage", + groupable: false }, { text: this.$t("PlayerStats.MVP"), @@ -216,7 +216,7 @@ export default { }, { text: this.$t("PlayerStats.KAST"), - value: "kast", + value: "kast" }, { text: this.$t("PlayerStats.KnifeKills"),