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

Fix missing spaces in container command #251

Signed-off-by: Shivam Rathore <shivam.rathore010@gmail.com>
This commit is contained in:
Shivam Rathore 2020-04-21 01:06:38 +05:30
parent c7f92494e0
commit db96bd2e29

View File

@ -112,7 +112,7 @@ export class PodDetailsContainer extends React.Component<Props> {
} }
{command && {command &&
<DrawerItem name={<Trans>Command</Trans>}> <DrawerItem name={<Trans>Command</Trans>}>
{command} {command.join(' ')}
</DrawerItem> </DrawerItem>
} }