Add missing async to CollectionTree::selectSearch()

This commit is contained in:
Dan Stillman 2024-06-24 02:36:23 -04:00
parent a9c5c1bfa5
commit 9c519948bc

View file

@ -663,7 +663,7 @@ var CollectionTree = class CollectionTree extends LibraryTree {
return this.selectByID('C' + id);
}
selectSearch(id) {
async selectSearch(id) {
return this.selectByID('S' + id);
}