From 875027d3f37eaebb23689c1a1af57a085918de79 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Tue, 2 Mar 2021 12:08:03 -0500 Subject: [PATCH] ui: replace double with single quotes in SecurityReport.js --- .../cc/ui/src/components/report-components/SecurityReport.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monkey/monkey_island/cc/ui/src/components/report-components/SecurityReport.js b/monkey/monkey_island/cc/ui/src/components/report-components/SecurityReport.js index 63ff12444..e3a1621eb 100644 --- a/monkey/monkey_island/cc/ui/src/components/report-components/SecurityReport.js +++ b/monkey/monkey_island/cc/ui/src/components/report-components/SecurityReport.js @@ -428,9 +428,9 @@ class ReportPageComponent extends AuthComponent { }); if (threatCount === 1) - return "1 threat" + return '1 threat' else - return threatCount + " threats" + return threatCount + ' threats' } generateZerologonOverview() {