Skip to content

Commit

Permalink
removed table wrapper margin (#25358)
Browse files Browse the repository at this point in the history
  • Loading branch information
doralchan committed Apr 19, 2021
1 parent e4cb4f1 commit d11823c
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions static/app/views/releases/detail/overview/issues.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ class Issues extends React.Component<Props, State> {
<StyledPagination pageLinks={pageLinks} onCursor={onCursor} />
</OpenInButtonBar>
</ControlsWrapper>
<TableWrapper data-test-id="release-wrapper">
<div data-test-id="release-wrapper">
<GroupList
orgId={orgId}
endpointPath={path}
Expand All @@ -249,7 +249,7 @@ class Issues extends React.Component<Props, State> {
withPagination={false}
onFetchSuccess={this.handleFetchSuccess}
/>
</TableWrapper>
</div>
</React.Fragment>
);
}
Expand Down Expand Up @@ -279,10 +279,6 @@ const StyledDropdownItem = styled(DropdownItem)`
white-space: nowrap;
`;

const TableWrapper = styled('div')`
margin-bottom: ${space(4)};
`;

const StyledPagination = styled(Pagination)`
margin: 0;
`;
Expand Down

0 comments on commit d11823c

Please sign in to comment.