File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
release/share/git-webui/webui/js
src/share/git-webui/webui/js Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 2.4.1] - Unreleased
9
+
10
+ ### Fixed
11
+ - Fixed JS errors in Studio on certain operations (#416 )
8
12
9
13
## [ 2.4.0] - 2024-07-08
10
14
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ webui.showWarning = function(message) {
93
93
// convert links in message into actual html links
94
94
var messageAsArr = message . split ( " " ) ;
95
95
messageAsArr = messageAsArr . map ( function ( messagePart ) {
96
- if ( messagePart . startsWith ( "https://" ) ) {
96
+ if ( messagePart . substring ( 0 , 8 ) === "https://" ) {
97
97
return '<a href="' + messagePart + '" target="_blank">' + messagePart + '</a>' ;
98
98
} else {
99
99
return messagePart ;
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ webui.showWarning = function(message) {
93
93
// convert links in message into actual html links
94
94
var messageAsArr = message . split ( " " ) ;
95
95
messageAsArr = messageAsArr . map ( function ( messagePart ) {
96
- if ( messagePart . startsWith ( "https://" ) ) {
96
+ if ( messagePart . substring ( 0 , 8 ) === "https://" ) {
97
97
return '<a href="' + messagePart + '" target="_blank">' + messagePart + '</a>' ;
98
98
} else {
99
99
return messagePart ;
Original file line number Diff line number Diff line change 3
3
<Document name =" git-source-control.ZPM" >
4
4
<Module >
5
5
<Name >git-source-control</Name >
6
- <Version >2.4.0 </Version >
6
+ <Version >2.4.1 </Version >
7
7
<Description >Server-side source control extension for use of Git on InterSystems platforms</Description >
8
8
<Keywords >git source control studio vscode</Keywords >
9
9
<Packaging >module</Packaging >
You can’t perform that action at this time.
0 commit comments