Skip to content

Commit

Permalink
fix: update the mutations columns in the overview table formatter (#423)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasbtf authored Dec 23, 2021
1 parent a0e3d96 commit 3af43b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/report-table-formatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@
}

},
"Variants of Interest": function format(value) {
"VOC Mutations": function format(value) {
return this["variant helper"](value, true);
},
"Other Variants": function format(value) {
"Other Mutations": function format(value) {
let result = this["variant helper"](value, false);
return result;
}
Expand Down

0 comments on commit 3af43b9

Please sign in to comment.