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

lint fixes

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2021-04-06 10:08:57 +03:00
parent 89893b5c23
commit a422d55c9d
2 changed files with 1 additions and 2 deletions

View File

@ -15,7 +15,7 @@ export class CatalogEntityRegistry {
@computed get items() {
const catalogItems: CatalogEntity[] = [];
for (const [id, items] of this.sources) {
for (const items of this.sources.values()) {
items.forEach((item) => catalogItems.push(item));
}

View File

@ -11,7 +11,6 @@ import { dumpConfigYaml } from "./kube-helpers";
import { saveToAppFiles } from "./utils/saveToAppFiles";
import { KubeConfig } from "@kubernetes/client-node";
import { handleRequest, requestMain, subscribeToBroadcast, unsubscribeAllFromBroadcast } from "./ipc";
import move from "array-move";
import { ResourceType } from "../renderer/components/+cluster-settings/components/cluster-metrics-setting";
export interface ClusterIconUpload {