diff --git a/awx/ui_next/src/components/ActionButtonCell/ActionButtonCell.jsx b/awx/ui_next/src/components/ActionButtonCell/ActionButtonCell.jsx index 694c363bbe..ce8f58ef27 100644 --- a/awx/ui_next/src/components/ActionButtonCell/ActionButtonCell.jsx +++ b/awx/ui_next/src/components/ActionButtonCell/ActionButtonCell.jsx @@ -1,9 +1,10 @@ import DataListCell from '@components/DataListCell'; import styled from 'styled-components'; -DataListCell.displayName = 'ActionButtonCell'; -export default styled(DataListCell)` +const ActionButtonCell = styled(DataListCell)` & > :not(:first-child) { margin-left: 20px; } `; +ActionButtonCell.displayName = 'ActionButtonCell'; +export default ActionButtonCell;