diff --git a/awx/ui_next/src/components/Workflow/WorkflowTools.jsx b/awx/ui_next/src/components/Workflow/WorkflowTools.jsx
index 49a07f41fe..6e1876e1c8 100644
--- a/awx/ui_next/src/components/Workflow/WorkflowTools.jsx
+++ b/awx/ui_next/src/components/Workflow/WorkflowTools.jsx
@@ -87,12 +87,20 @@ function WorkflowTools({
content={i18n._(t`Fit the graph to the available screen size`)}
position="bottom"
>
-
- onPan('down')}>
+ onPan('down')}
+ >
- onPan('right')}>
+ onPan('right')}
+ >
diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputGraph.jsx b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputGraph.jsx
index 32244b1197..2e7a3cf341 100644
--- a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputGraph.jsx
+++ b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputGraph.jsx
@@ -213,7 +213,9 @@ function WorkflowOutputGraph({
zoomPercentage={zoomPercentage}
/>
)}
- {showLegend && onUpdateShowLegend(false)} />}
+ {showLegend && (
+ onUpdateShowLegend(false)} />
+ )}
);
diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx
index 7fbd0880fe..1a14a41dec 100644
--- a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx
+++ b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx
@@ -354,7 +354,9 @@ function VisualizerGraph({
zoomPercentage={zoomPercentage}
/>
)}
- {showLegend && onUpdateShowLegend(false)} />}
+ {showLegend && (
+ onUpdateShowLegend(false)} />
+ )}
>
);