Browse Source

Add undefined check to avoid TS2532

tags/v0.1.3
bertieb 3 years ago
parent
commit
1696f38ceb
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      src/ts/frontend.ts

+ 5
- 1
src/ts/frontend.ts View File

@@ -226,7 +226,11 @@ function generateTables(rollstats: RollStats): void {
let tb = $("#outcomeTable").find("tbody");
let outcome: Outcomes = okeys[i] as Outcomes;
let outcomeCount = rollstats.outcomeCounts[outcome];
let outcomePercent = (outcomeCount / rollstats.numRolls * 100).toFixed(2);
let outcomePercent: string = "";
if (outcomeCount) {
// Needed to avoid TS2532:
outcomePercent = (outcomeCount / rollstats.numRolls * 100).toFixed(2);
}
tb.append(`<tr> <td>${outcome}</td>
<td>${outcomeCount}</td>
<td>${outcomePercent}</td>


Loading…
Cancel
Save