Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfranco committed Jan 18, 2025
1 parent 94f580d commit 7f18667
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1229,9 +1229,7 @@ export class Combobox
return this.filterText === "" ? this.items : this.items.filter((item) => !item.hidden);
}

private updateItems(
scope: "all" | ("items" | "data" | "selection" | "itemprops")[] = "all",
): void {
private updateItems(scope: "all" | ("items" | "data" | "selection" | "props")[] = "all"): void {
if (scope === "all" || scope.includes("items")) {
this.items = this.getItems();
this.groupItems = this.getGroupItems();
Expand Down

0 comments on commit 7f18667

Please sign in to comment.