Skip to content
Permalink
Browse files Browse the repository at this point in the history
fix: [security] XSS in event-graph relationship tooltip
  • Loading branch information
mokaddem committed Mar 10, 2023
1 parent 30255b8 commit 78f4234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/webroot/js/event-graph.js
Expand Up @@ -822,7 +822,7 @@ class EventGraph {
from: rel.from,
to: rel.to,
label: rel.type,
title: rel.comment,
title: escapeHtml(rel.comment),
color: {
opacity: 1.0,
}
Expand Down

0 comments on commit 78f4234

Please sign in to comment.