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

Hiding sequence number in log tabs

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2020-10-07 13:20:36 +03:00
parent c8a83ce1fa
commit 6581a75498
2 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ export function createPodLogsTab(data: IPodLogsData, tabParams: Partial<IDockTab
kind: TabKind.POD_LOGS,
title: `Logs: ${data.pod.getName()}`,
...tabParams
});
}, false);
podLogsStore.setData(tab.id, data);
return tab;
}

View File

@ -224,7 +224,7 @@ export class PodLogs extends React.Component<Props> {
tabId={this.props.tab.id}
controls={this.renderControls()}
showSubmitClose={false}
showSubmit={false}
showButtons={false}
/>
<div className="logs" onScroll={this.onScroll} ref={e => this.logsElement = e}>
{this.renderLogs()}