mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 07:46:16 -04:00
Fixed populateOption HTML escape bug. Closes #490
This commit is contained in:
parent
7d09ba5669
commit
3d20833d42
2 changed files with 4 additions and 2 deletions
|
@ -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`;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue