mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix PortForwardStore
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
f4d80a27c0
commit
aa503c3f71
@ -73,8 +73,8 @@ export class PortForwardStore extends ItemStore<PortForwardItem> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async removeSelectedItems() {
|
async removeItems(items: PortForwardItem[]) {
|
||||||
return Promise.all(this.selectedItems.map(this.remove));
|
await Promise.all(items.map(this.remove));
|
||||||
}
|
}
|
||||||
|
|
||||||
getById(id: string) {
|
getById(id: string) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user