ui: replace double with single quotes in SecurityReport.js

This commit is contained in:
Mike Salvatore 2021-03-02 12:08:03 -05:00
parent b652e0d851
commit 875027d3f3
1 changed files with 2 additions and 2 deletions

View File

@ -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() {