mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
fix: forgot assists in kda calculation
This commit is contained in:
parent
0399680a9e
commit
115ecdf0d3
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@
|
|||
</li>
|
||||
<li class="flex justify-between items-center px-4 py-1 leading-tight">
|
||||
<div class="w-1/4 text-left whitespace-no-wrap">kda</div>
|
||||
<div class="w-1/4">{{ globalStats.kills / globalStats.deaths|round }}</div>
|
||||
<div class="w-1/4">{{ (globalStats.kills + globalStats.assists) / globalStats.deaths|round }}</div>
|
||||
</li>
|
||||
</ul>
|
||||
<template v-if="leagueStatsByType('Ranked').length">
|
||||
|
|
|
|||
Loading…
Reference in a new issue