Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved logging in preview and when errors occur via WebSocket commands (#467)
- Fixed pull event handler handling of extremely long class names from diff (#467)
- Fixed Git web UI prompt to update file list when file selected/unselected (#478)
- Fixed folder settings in mappings to be saved and persist (#483)

## [2.4.1] - 2024-08-02

Expand Down
9 changes: 9 additions & 0 deletions csp/gitprojectsettings.csp
Original file line number Diff line number Diff line change
Expand Up @@ -668,6 +668,15 @@ $('[id^=noFoldersSwitch]').click(toggleNoFolders);
</script>
</body>
</html>
<script method='OnPreHTTP' type="text/javascript">
// Check to persist state of no folder switches
$('.mapping-input-group').children('.voca').each(function(){
var currElement = $(this).children().children(".custom-control").children()[0]
if(!$(currElement).hasClass("active")) {
$(currElement).parent().siblings("#NoFolders")[0].value = "NoFolders";
}
});
</script>
<script method='OnPreHTTP' language='cache' runat='server' returntype='%Boolean'>
try {
set %session.UseSessionCookie = 1 // Always set back to autodetect
Expand Down
Loading