File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
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 @@ -668,6 +668,15 @@ $('[id^=noFoldersSwitch]').click(toggleNoFolders);
668
668
</script>
669
669
</body>
670
670
</html>
671
+ <script method='OnPreHTTP' type="text/javascript">
672
+ // Check to persist state of no folder switches
673
+ $('.mapping-input-group').children('.voca').each(function(){
674
+ var currElement = $(this).children().children(".custom-control").children()[0]
675
+ if(!$(currElement).hasClass("active")) {
676
+ $(currElement).parent().siblings("#NoFolders")[0].value = "NoFolders";
677
+ }
678
+ });
679
+ </script>
671
680
<script method='OnPreHTTP' language='cache' runat='server' returntype='%Boolean'>
672
681
try {
673
682
set %session.UseSessionCookie = 1 // Always set back to autodetect
You can’t perform that action at this time.
0 commit comments