File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 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
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 )
2626- 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 )
2728
2829## [ 2.4.1] - 2024-08-02
2930
Original file line number Diff line number Diff line change @@ -665,6 +665,13 @@ function toggleNoFolders(e){
665665
666666$('[id^=noFoldersSwitch]').click(toggleNoFolders);
667667
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+ });
668675</script>
669676</body>
670677</html>
Original file line number Diff line number Diff line change 33 <Document name =" git-source-control.ZPM" >
44 <Module >
55 <Name >git-source-control</Name >
6- <Version >2.4.1 </Version >
6+ <Version >2.5.0 </Version >
77 <Description >Server-side source control extension for use of Git on InterSystems platforms</Description >
88 <Keywords >git source control studio vscode</Keywords >
99 <Packaging >module</Packaging >
You can’t perform that action at this time.
0 commit comments