File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313- Added link back to IRIS management portal from Settings, Git WebUI pages (#449 )
1414- Added Import all and Import All (Force) to basic mode menu (#498 )
1515- Improved behavior for commits when attribution settings are not configured (#450 )
16+ - Convert URLs in Sync output UI into clickable links (#497 )
1617
1718### Fixed
1819- Changed prompts in configure from 0/1 to no/yes (#461 )
Original file line number Diff line number Diff line change 147147 &js<
148148 var outputContainer = document.getElementById('outputBox');
149149 var lineText = #(..QuoteJS(escapedLine))#;
150- var lineTextNode = document.createTextNode(lineText);
150+ var urlRegex = /(https?:\/\/[^ ]*)/gi;
151+ lineText = lineText.replace(urlRegex, "<a href='$1' target=_blank>$1</a>");
151152 outputContainer.innerHTML += lineText + "<br>";
152153 >
153154 }
You can’t perform that action at this time.
0 commit comments