mirror of
https://github.com/wenlzhang/obsidian-tag-index.git
synced 2026-07-22 05:44:03 +00:00
Improve code format
This commit is contained in:
parent
1ae80fdf97
commit
417b03386b
1 changed files with 3 additions and 3 deletions
|
|
@ -43,7 +43,7 @@ export class TagIndexSettingTab extends PluginSettingTab {
|
|||
await this.plugin.saveSettings();
|
||||
}),
|
||||
);
|
||||
|
||||
|
||||
// Add a heading for Advanced settings
|
||||
new Setting(containerEl).setName("Advanced").setHeading();
|
||||
|
||||
|
|
@ -51,7 +51,7 @@ export class TagIndexSettingTab extends PluginSettingTab {
|
|||
new Setting(containerEl)
|
||||
.setName("Debug mode")
|
||||
.setDesc(
|
||||
"Enable console logging for debugging purposes. Only enable this if you need to troubleshoot issues."
|
||||
"Enable console logging for debugging purposes. Only enable this if you need to troubleshoot issues.",
|
||||
)
|
||||
.addToggle((toggle) =>
|
||||
toggle
|
||||
|
|
@ -59,7 +59,7 @@ export class TagIndexSettingTab extends PluginSettingTab {
|
|||
.onChange(async (value) => {
|
||||
this.plugin.settings.debugMode = value;
|
||||
await this.plugin.saveSettings();
|
||||
})
|
||||
}),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue