mirror of
https://github.com/lostpaul/obsidian-folder-notes.git
synced 2026-07-22 07:40:24 +00:00
Fix store folder condition show as activated bug
This commit is contained in:
parent
008c4715b4
commit
0b33958f3c
1 changed files with 1 additions and 1 deletions
|
|
@ -120,7 +120,7 @@ export class FolderOverviewSettings extends Modal {
|
|||
.setDesc('Choose if the collapsed condition should be stored stored until you restart Obsidian')
|
||||
.addToggle((toggle) =>
|
||||
toggle
|
||||
.setValue(this.yaml.storeFolderCondition || this.plugin.settings.defaultOverview.storeFolderCondition || true)
|
||||
.setValue(this.yaml.storeFolderCondition)
|
||||
.onChange(async (value) => {
|
||||
this.yaml.storeFolderCondition = value;
|
||||
if (this.defaultSettings) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue