From e1dda082e0223b7f7e38aee1374d71382f7eba2c Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Thu, 18 Nov 2021 10:08:24 +0100 Subject: [PATCH] escape user name displayed in the history panel --- modules/ui/panels/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/panels/history.js b/modules/ui/panels/history.js index 1329a04b8..fe96df751 100644 --- a/modules/ui/panels/history.js +++ b/modules/ui/panels/history.js @@ -28,7 +28,7 @@ export function uiPanelHistory(context) { selection .append('span') .attr('class', 'user-name') - .html(userName); + .text(userName); var links = selection .append('div')