1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix build

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-10-05 15:53:11 -04:00
parent e214519fcc
commit 15eb041378
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ export class CatalogCategoryRegistry {
iter.reduce(
this.filters,
iter.filter,
this.items,
this.items.values(),
)
);
}

View File

@ -105,7 +105,7 @@ export abstract class CatalogCategory extends (EventEmitter as new () => TypedEm
iter.reduce(
this.filters,
iter.filter,
menuItems,
menuItems.values(),
)
);
}