File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
release/share/git-webui/webui/js
src/share/git-webui/webui/js Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -2577,10 +2577,7 @@ webui.NewChangedFilesView = function(workspaceView) {
2577
2577
}
2578
2578
2579
2579
self . doubleQuotesToSingleQuotes = function ( string ) {
2580
- console . log ( "here" )
2581
- var modified = string . replace ( / " / g, "'" ) ;
2582
- console . log ( modified ) ;
2583
- return `\`${ modified } \`` ;
2580
+ return string . replace ( / " / g, "'" ) ;
2584
2581
}
2585
2582
2586
2583
self . commit = function ( message , details ) {
Original file line number Diff line number Diff line change @@ -2577,8 +2577,7 @@ webui.NewChangedFilesView = function(workspaceView) {
2577
2577
}
2578
2578
2579
2579
self . doubleQuotesToSingleQuotes = function ( string ) {
2580
- var modified = string . replace ( / " / g, "'" ) ;
2581
- return `\`${ modified } \`` ;
2580
+ return string . replace ( / " / g, "'" ) ;
2582
2581
}
2583
2582
2584
2583
self . commit = function ( message , details ) {
You can’t perform that action at this time.
0 commit comments