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

Fix lint newline errors

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-01-25 16:22:46 +03:00
parent 51fb963b93
commit 43c743f298
4 changed files with 4 additions and 4 deletions

View File

@ -100,4 +100,4 @@ describe("<LogResourceSelector />", () => {
expect(getByText("super-deployment")).toBeInTheDocument();
});
});
});

View File

@ -110,4 +110,4 @@ describe("log tab store", () => {
expect(logTabStore.getData(dockStore.selectedTabId)).toBeUndefined();
expect(dockStore.getTabById(dockStore.selectedTabId)).toBeUndefined();
});
});
});

View File

@ -200,4 +200,4 @@ export const deploymentPod3 = {
podIP: "dummy",
startTime: "dummy",
}
};
};

View File

@ -124,4 +124,4 @@ export const logTabStore = new LogTabStore();
export function isLogsTab(tab: IDockTab) {
return tab && tab.kind === TabKind.POD_LOGS;
}
}