mirror of
https://github.com/ansible/awx.git
synced 2026-03-21 02:47:35 -02:30
Fixes word wrap issue
This commit is contained in:
9
awx/ui_next/src/components/DataListCell/DataListCell.jsx
Normal file
9
awx/ui_next/src/components/DataListCell/DataListCell.jsx
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import { DataListCell } from '@patternfly/react-core';
|
||||||
|
import styled from 'styled-components';
|
||||||
|
|
||||||
|
DataListCell.displayName = 'PFDataListCell';
|
||||||
|
// Once https://github.com/patternfly/patternfly-react/issues/3938
|
||||||
|
// has been resolved this component can be removed
|
||||||
|
export default styled(DataListCell)`
|
||||||
|
word-break: break-word;
|
||||||
|
`;
|
||||||
4
awx/ui_next/src/components/DataListCell/index.js
Normal file
4
awx/ui_next/src/components/DataListCell/index.js
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
export {
|
||||||
|
default
|
||||||
|
}
|
||||||
|
from './DataListCell'
|
||||||
@@ -9,10 +9,10 @@ import {
|
|||||||
DataListItemCells,
|
DataListItemCells,
|
||||||
DataListItemRow,
|
DataListItemRow,
|
||||||
DataListItem,
|
DataListItem,
|
||||||
DataListCell,
|
|
||||||
Stack,
|
Stack,
|
||||||
StackItem,
|
StackItem,
|
||||||
} from '@patternfly/react-core';
|
} from '@patternfly/react-core';
|
||||||
|
import DataListCell from '@components/DataListCell';
|
||||||
import { CaretDownIcon, CaretUpIcon } from '@patternfly/react-icons';
|
import { CaretDownIcon, CaretUpIcon } from '@patternfly/react-icons';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user