aboutsummaryrefslogtreecommitdiff
path: root/html
diff options
context:
space:
mode:
authorhackademix <giorgio@maone.net>2019-02-12 23:47:09 +0100
committerhackademix <giorgio@maone.net>2019-02-13 00:05:00 +0100
commit77e9a691e7930adf2a776dc6a85bdf122b2ff511 (patch)
treebe20e2834d5c724802a038ec3af6c954721acc56 /html
parent1f0ce1cd447770b981032152cf13276968350f0a (diff)
Fixed regression hiding some inline scripts and global license ref from UI reports.
Diffstat (limited to 'html')
-rw-r--r--html/display_panel/content/main_panel.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/display_panel/content/main_panel.js b/html/display_panel/content/main_panel.js
index f662b35..7934fee 100644
--- a/html/display_panel/content/main_panel.js
+++ b/html/display_panel/content/main_panel.js
@@ -111,7 +111,7 @@ function createList(data, group){
container.classList.add("empty");
}
// generate list
- let viewSourceToHuman = /^view-source:(.*)#line(\d+)\(([^)]*)\)/;
+ let viewSourceToHuman = /^view-source:(.*)#line(\d+)\(([^)]*)\).*/;
for (let entry of entries) {
let [scriptId, reason] = entry;
let li = liTemplate.cloneNode(true);