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
23
23
- Pull event handler will attempt compile even if there are failures to load (#457 )
24
24
- Improved logging in preview and when errors occur via WebSocket commands (#467 )
25
25
- 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 )
26
27
27
28
## [ 2.4.1] - 2024-08-02
28
29
Original file line number Diff line number Diff line change @@ -2641,7 +2641,7 @@ webui.NewChangedFilesView = function(workspaceView) {
2641
2641
}
2642
2642
2643
2643
if ( $ ( element ) . hasClass ( "other-user" ) && ( selectedItemsFromOtherUser . indexOf ( fileName ) > - 1 ) ) {
2644
- selectedItemsFromOtherUser . splice ( selectedItems . indexOf ( fileName ) , 1 ) ;
2644
+ selectedItemsFromOtherUser . splice ( selectedItemsFromOtherUser . indexOf ( fileName ) , 1 ) ;
2645
2645
}
2646
2646
}
2647
2647
self . updateButtons ( ) ;
Original file line number Diff line number Diff line change @@ -2641,7 +2641,7 @@ webui.NewChangedFilesView = function(workspaceView) {
2641
2641
}
2642
2642
2643
2643
if ( $ ( element ) . hasClass ( "other-user" ) && ( selectedItemsFromOtherUser . indexOf ( fileName ) > - 1 ) ) {
2644
- selectedItemsFromOtherUser . splice ( selectedItems . indexOf ( fileName ) , 1 ) ;
2644
+ selectedItemsFromOtherUser . splice ( selectedItemsFromOtherUser . indexOf ( fileName ) , 1 ) ;
2645
2645
}
2646
2646
}
2647
2647
self . updateButtons ( ) ;
You can’t perform that action at this time.
0 commit comments