File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
release/share/git-webui/webui/js
src/share/git-webui/webui/js Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2323- Pull event handler will attempt compile even if there are failures to load (#457 )
2424- Improved logging in preview and when errors occur via WebSocket commands (#467 )
2525- Fixed pull event handler handling of extremely long class names from diff (#467 )
26+ - Fixed Git web UI prompt to update file list when file selected/unselected (#478 )
2627
2728## [ 2.4.1] - 2024-08-02
2829
Original file line number Diff line number Diff line change @@ -2641,7 +2641,7 @@ webui.NewChangedFilesView = function(workspaceView) {
26412641 }
26422642
26432643 if ( $ ( element ) . hasClass ( "other-user" ) && ( selectedItemsFromOtherUser . indexOf ( fileName ) > - 1 ) ) {
2644- selectedItemsFromOtherUser . splice ( selectedItems . indexOf ( fileName ) , 1 ) ;
2644+ selectedItemsFromOtherUser . splice ( selectedItemsFromOtherUser . indexOf ( fileName ) , 1 ) ;
26452645 }
26462646 }
26472647 self . updateButtons ( ) ;
Original file line number Diff line number Diff line change @@ -2641,7 +2641,7 @@ webui.NewChangedFilesView = function(workspaceView) {
26412641 }
26422642
26432643 if ( $ ( element ) . hasClass ( "other-user" ) && ( selectedItemsFromOtherUser . indexOf ( fileName ) > - 1 ) ) {
2644- selectedItemsFromOtherUser . splice ( selectedItems . indexOf ( fileName ) , 1 ) ;
2644+ selectedItemsFromOtherUser . splice ( selectedItemsFromOtherUser . indexOf ( fileName ) , 1 ) ;
26452645 }
26462646 }
26472647 self . updateButtons ( ) ;
You can’t perform that action at this time.
0 commit comments