From 35c27c8b16268c2376c0e03267258c5d0798f050 Mon Sep 17 00:00:00 2001 From: mabashian Date: Tue, 29 Oct 2019 14:45:05 -0400 Subject: [PATCH] Tweak ActionButtonCell definition and export --- .../src/components/ActionButtonCell/ActionButtonCell.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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;