mirror of
https://github.com/lostpaul/obsidian-folder-notes.git
synced 2026-07-22 07:40:24 +00:00
Limit suggested folders amount
This commit is contained in:
parent
e7a100e9fb
commit
a26422d0f2
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ export class FolderSuggest extends TextInputSuggest<TFolder> {
|
|||
if (this.folder) {
|
||||
files = this.folder.children;
|
||||
} else {
|
||||
files = this.plugin.app.vault.getAllLoadedFiles();
|
||||
files = this.plugin.app.vault.getAllLoadedFiles().slice(0,100);
|
||||
}
|
||||
files.forEach((folder: TAbstractFile) => {
|
||||
if (
|
||||
|
|
|
|||
Loading…
Reference in a new issue