File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
41
41
- Report error more clearly if you try to create a branch with an invalid name (#534 )
42
42
- Don't default to WINDOWS style paths (#357 )
43
43
- Fix errors when deleting non-existent files on import (#524 )
44
+ - Fixed issue with saving multiple new no-folder mapping settings at the same time (#533 )
44
45
45
46
## [ 2.6.0] - 2024-10-07
46
47
Original file line number Diff line number Diff line change @@ -735,7 +735,10 @@ $(function()
735
735
736
736
newEntry.appendTo(controlForm);
737
737
$(("#"+newID)).click(toggleNoFolders);
738
-
738
+
739
+ // Click twice to toggle and get side effects
740
+ $(("#"+newID)).click();
741
+ $(("#"+newID)).click();
739
742
}).on('click', '.btn-remove', function(e)
740
743
{
741
744
$(this).parent().parent().parent().prev('#indent-div').remove();
You can’t perform that action at this time.
0 commit comments