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

fix abort-controller to use polyfill

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-02-25 15:21:14 -05:00
parent 73097c02dc
commit 4e99b4910f
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import { AbortSignal } from "abort-controller";
import "abort-controller/polyfill";
/**
* Creates a new promise that will be rejected when the signal rejects.

View File

@ -9,7 +9,6 @@ import { apiManager } from "./api/api-manager";
import { IKubeApiQueryParams, KubeApi, parseKubeApi } from "./api/kube-api";
import { KubeJsonApiData } from "./api/kube-json-api";
import { Notifications } from "./components/notifications";
import { AbortController } from "abort-controller";
export interface KubeObjectStoreLoadingParams {
namespaces: string[];