mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Change terminal and chart install icons
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
parent
e5caaa38ed
commit
52a8db159f
@ -6,7 +6,6 @@
|
||||
import styles from "./dock-tabs.module.scss";
|
||||
|
||||
import React, { Fragment, useEffect, useRef, useState } from "react";
|
||||
import { Icon } from "../icon";
|
||||
import { Tabs } from "../tabs/tabs";
|
||||
import { DockTab } from "./dock-tab";
|
||||
import type { DockTab as DockTabModel } from "./dock/store";
|
||||
@ -38,7 +37,7 @@ export const DockTabs = ({ tabs, autoFocus, selectedTab, onChangeTab }: DockTabs
|
||||
return <DockTab value={tab} icon="edit" />;
|
||||
case TabKind.INSTALL_CHART:
|
||||
case TabKind.UPGRADE_CHART:
|
||||
return <DockTab value={tab} icon={<Icon svg="install" />} />;
|
||||
return <DockTab value={tab} icon="install_desktop" />;
|
||||
case TabKind.POD_LOGS:
|
||||
return <DockTab value={tab} icon="subject" />;
|
||||
case TabKind.TERMINAL:
|
||||
|
||||
@ -46,7 +46,7 @@ class NonInjectedTerminalTab extends React.Component<TerminalTabProps & Dependen
|
||||
}
|
||||
|
||||
render() {
|
||||
const tabIcon = <Icon svg="terminal"/>;
|
||||
const tabIcon = <Icon material="terminal"/>;
|
||||
const className = cssNames("TerminalTab", this.props.className, {
|
||||
disconnected: this.isDisconnected,
|
||||
});
|
||||
|
||||
Loading…
Reference in New Issue
Block a user