mirror of
https://github.com/lostpaul/obsidian-folder-notes.git
synced 2026-07-22 07:40:24 +00:00
Remove console.log's
This commit is contained in:
parent
89c11df3ce
commit
ebc6199122
1 changed files with 0 additions and 2 deletions
|
|
@ -28,7 +28,6 @@ export class TemplateSuggest extends TextInputSuggest<TFile> {
|
|||
}
|
||||
|
||||
getSuggestions(input_str: string): TFile[] {
|
||||
console.log('this.plugin', this.plugin)
|
||||
const { templateFolder, templaterPlugin } = getTemplatePlugins(this.plugin.app);
|
||||
if ((!templateFolder || templateFolder?.trim() === '') && !templaterPlugin) {
|
||||
this.plugin.settings.templatePath = '';
|
||||
|
|
@ -40,7 +39,6 @@ export class TemplateSuggest extends TextInputSuggest<TFile> {
|
|||
folder = this.plugin.app.vault.getAbstractFileByPath(templaterPlugin.plugin?.settings?.templates_folder as string) as TFolder;
|
||||
|
||||
} else {
|
||||
console.log('templateFolder', templateFolder);
|
||||
folder = this.plugin.app.vault.getAbstractFileByPath(templateFolder) as TFolder;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue