From 00781fa45962822491110b05afb5947799d32968 Mon Sep 17 00:00:00 2001 From: n1474335 Date: Tue, 29 Mar 2022 11:55:41 +0100 Subject: [PATCH] Fixed lint --- src/core/operations/SeriesChart.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/operations/SeriesChart.mjs b/src/core/operations/SeriesChart.mjs index 85979703..7baf594c 100644 --- a/src/core/operations/SeriesChart.mjs +++ b/src/core/operations/SeriesChart.mjs @@ -74,7 +74,7 @@ class SeriesChart extends Operation { pipRadius = args[3], // Escape HTML from all colours to prevent reflected XSS. See https://github.com/gchq/CyberChef/issues/1265 seriesColours = args[4].split(",").map((colour) => { - return Utils.escapeHtml(colour) + return Utils.escapeHtml(colour); }), svgWidth = 500, interSeriesPadding = 20,