mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
Fixes left margin on notifications tab
This commit is contained in:
parent
87d9df5876
commit
e28776962d
@ -113,7 +113,8 @@ class DataListToolbar extends React.Component {
|
||||
addUrl,
|
||||
showExpandCollapse,
|
||||
showDelete,
|
||||
showSelectAll
|
||||
showSelectAll,
|
||||
isLookup
|
||||
} = this.props;
|
||||
const {
|
||||
isSearchDropdownOpen,
|
||||
@ -155,7 +156,7 @@ class DataListToolbar extends React.Component {
|
||||
<div className="awx-toolbar">
|
||||
<Level>
|
||||
<LevelItem style={{ display: 'flex', flexBasis: '700px' }}>
|
||||
<Toolbar style={{ marginLeft: showSelectAll ? '20px' : '0px', flexGrow: '1' }}>
|
||||
<Toolbar style={{ marginLeft: isLookup ? '0px' : '20px', flexGrow: '1' }}>
|
||||
{ showSelectAll && (
|
||||
<ToolbarGroup>
|
||||
<ToolbarItem>
|
||||
|
@ -195,6 +195,7 @@ class Lookup extends React.Component {
|
||||
columns={columns}
|
||||
onSearch={this.onSearch}
|
||||
onSort={this.onSort}
|
||||
isLookup
|
||||
/>
|
||||
<ul className="pf-c-data-list awx-c-list">
|
||||
{results.map(i => (
|
||||
|
Loading…
Reference in New Issue
Block a user