File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
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
26
- Fixed Git web UI prompt to update file list when file selected/unselected (#478 )
27
+ - Fixed folder settings in mappings to be saved and persist (#483 )
27
28
28
29
## [ 2.4.1] - 2024-08-02
29
30
Original file line number Diff line number Diff line change @@ -665,6 +665,13 @@ function toggleNoFolders(e){
665
665
666
666
$('[id^=noFoldersSwitch]').click(toggleNoFolders);
667
667
668
+ // Check to persist state of no folder switches
669
+ $('.mapping-input-group').children('.voca').each(function(){
670
+ var currElement = $(this).children().children(".custom-control").children()[0]
671
+ if(!$(currElement).hasClass("active")) {
672
+ $(currElement).parent().siblings("#NoFolders")[0].value = "NoFolders";
673
+ }
674
+ });
668
675
</script>
669
676
</body>
670
677
</html>
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.1 </Version >
6
+ <Version >2.5.0 </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