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

Fix status brick in pod-menu-extension (#1698)

Signed-off-by: Pavel Ashevskii <pashevskii@mirantis.com>
This commit is contained in:
pashevskii 2020-12-08 18:30:58 +04:00 committed by GitHub
parent 69208fdfe6
commit aa1d6bb338
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ export class PodLogsMenu extends React.Component<PodLogsMenuProps> {
return (
<Component.MenuItem key={name} onClick={Util.prevDefault(() => this.showLogs(container))} className="flex align-center">
{brick}
{name}
<span>{name}</span>
</Component.MenuItem>
);
})

View File

@ -54,7 +54,7 @@ export class PodShellMenu extends React.Component<PodShellMenuProps> {
return (
<Component.MenuItem key={name} onClick={Util.prevDefault(() => this.execShell(name))} className="flex align-center">
<Component.StatusBrick/>
{name}
<span>{name}</span>
</Component.MenuItem>
);
})