From 3af43b991af218931996d9093ecf944bff907476 Mon Sep 17 00:00:00 2001 From: Thomas Battenfeld <46334240+thomasbtf@users.noreply.github.com> Date: Thu, 23 Dec 2021 13:09:35 +0100 Subject: [PATCH] fix: update the mutations columns in the overview table formatter (#423) --- resources/report-table-formatter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/report-table-formatter.js b/resources/report-table-formatter.js index de4dd51f8..6fa313048 100644 --- a/resources/report-table-formatter.js +++ b/resources/report-table-formatter.js @@ -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; }