Fix unit-test styling warning

Fix unit-test styling warning.

```console.error
      Warning: Unsupported style property white-space. Did you mean
      whiteSpace?
```
This commit is contained in:
nixocio
2021-05-03 09:20:25 -04:00
parent 929ed3e09d
commit c1e0def013

View File

@@ -87,7 +87,7 @@ function AdHocCommandsWizard({
<AdHocExecutionEnvironmentStep organizationId={organizationId} />
),
// Removed this line when https://github.com/patternfly/patternfly-react/issues/5729 is fixed
stepNavItemProps: { style: { 'white-space': 'nowrap' } },
stepNavItemProps: { style: { whiteSpace: 'nowrap' } },
enableNext: true,
nextButtonText: t`Next`,
canJumpTo: currentStepId >= 2,