Skip to content

Commit f942b73

Browse files
authored
Merge branch 'main' into fix-481
2 parents f8b526d + 168f172 commit f942b73

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4242
- Don't default to WINDOWS style paths (#357)
4343
- Fix errors when deleting non-existent files on import (#524)
4444
- Fix errors on commit when a file was added, never committed, then deleted from the repository (#481)
45+
- Fixed issue with saving multiple new no-folder mapping settings at the same time (#533)
4546

4647
## [2.6.0] - 2024-10-07
4748

csp/gitprojectsettings.csp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,10 @@ $(function()
735735

736736
newEntry.appendTo(controlForm);
737737
$(("#"+newID)).click(toggleNoFolders);
738-
738+
739+
// Click twice to toggle and get side effects
740+
$(("#"+newID)).click();
741+
$(("#"+newID)).click();
739742
}).on('click', '.btn-remove', function(e)
740743
{
741744
$(this).parent().parent().parent().prev('#indent-div').remove();

0 commit comments

Comments
 (0)