mirror of
https://github.com/gchq/CyberChef
synced 2025-12-13 14:53:15 +00:00
Fixed populateOption HTML escape bug. Closes #490
This commit is contained in:
@@ -240,7 +240,7 @@ function regexHighlight (input, regex, displayTotal) {
|
||||
if (groups.length) {
|
||||
title += "Groups:\n";
|
||||
for (let i = 0; i < groups.length; i++) {
|
||||
title += `\t${i+1}: ${Utils.escapeHtml(groups[i])}\n`;
|
||||
title += `\t${i+1}: ${Utils.escapeHtml(groups[i] || "")}\n`;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user