From c1e0def01325873b40c1d38811c49001f24f0d5d Mon Sep 17 00:00:00 2001 From: nixocio Date: Mon, 3 May 2021 09:20:25 -0400 Subject: [PATCH] Fix unit-test styling warning Fix unit-test styling warning. ```console.error Warning: Unsupported style property white-space. Did you mean whiteSpace? ``` --- .../src/components/AdHocCommands/AdHocCommandsWizard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.jsx index 0348878b5d..66154f0a40 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.jsx @@ -87,7 +87,7 @@ function AdHocCommandsWizard({ ), // 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,