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:
parent
c8a83ce1fa
commit
6581a75498
@ -122,7 +122,7 @@ export function createPodLogsTab(data: IPodLogsData, tabParams: Partial<IDockTab
|
|||||||
kind: TabKind.POD_LOGS,
|
kind: TabKind.POD_LOGS,
|
||||||
title: `Logs: ${data.pod.getName()}`,
|
title: `Logs: ${data.pod.getName()}`,
|
||||||
...tabParams
|
...tabParams
|
||||||
});
|
}, false);
|
||||||
podLogsStore.setData(tab.id, data);
|
podLogsStore.setData(tab.id, data);
|
||||||
return tab;
|
return tab;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -224,7 +224,7 @@ export class PodLogs extends React.Component<Props> {
|
|||||||
tabId={this.props.tab.id}
|
tabId={this.props.tab.id}
|
||||||
controls={this.renderControls()}
|
controls={this.renderControls()}
|
||||||
showSubmitClose={false}
|
showSubmitClose={false}
|
||||||
showSubmit={false}
|
showButtons={false}
|
||||||
/>
|
/>
|
||||||
<div className="logs" onScroll={this.onScroll} ref={e => this.logsElement = e}>
|
<div className="logs" onScroll={this.onScroll} ref={e => this.logsElement = e}>
|
||||||
{this.renderLogs()}
|
{this.renderLogs()}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user