diff --git a/awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.jsx b/awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.jsx index 8ce9038682..b30e4af1a0 100644 --- a/awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.jsx +++ b/awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.jsx @@ -11,7 +11,7 @@ const SmallButton = styled(Button)` } `; -function MultiButtonToggle({ buttons, value, onChange }) { +function MultiButtonToggle({ buttons, value, onChange, }) { const setValue = newValue => { if (value !== newValue) { onChange(newValue); @@ -24,6 +24,7 @@ function MultiButtonToggle({ buttons, value, onChange }) { buttons.map(([buttonValue, buttonLabel]) => ( setValue(buttonValue)}