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 (#284)

Signed-off-by: Shivam Rathore <shivam.rathore010@gmail.com>
This commit is contained in:
Shivam Rathore 2020-04-21 22:51:53 +05:30 committed by GitHub
parent 8c666116a3
commit 6826c43102
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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