Skip to content

Commit 31ff87d

Browse files
authored
Merge pull request #25 from jamiefdhurst/bugfix/folder-selection
Remove limit from suggestions box
2 parents 0a0f1b3 + 9d689d6 commit 31ff87d

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
run: |
3737
npm run test-ci
3838
- name: Upload Test Results
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: tests
4242
path: junit.xml
4343
- name: Upload Coverage
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: coverage
4747
path: coverage/cobertura-coverage.xml

mise.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[tools]
2+
node = "20"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/modal/folder-suggest.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export class FolderSuggest extends AbstractInputSuggest<string> {
77
constructor(app: App, folders: TFolder[], el: HTMLInputElement) {
88
super(app, el);
99
this.el = el;
10+
this.limit = 0;
1011
folders.forEach(folder => {
1112
this.folders.add(folder.path);
1213
});

0 commit comments

Comments
 (0)