mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 11:20:39 -03:30
Fixes word wrap issue
This commit is contained in:
parent
d941f11ccd
commit
ebb0f31b0b
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,
|
||||
DataListItemRow,
|
||||
DataListItem,
|
||||
DataListCell,
|
||||
Stack,
|
||||
StackItem,
|
||||
} from '@patternfly/react-core';
|
||||
import DataListCell from '@components/DataListCell';
|
||||
import { CaretDownIcon, CaretUpIcon } from '@patternfly/react-icons';
|
||||
import styled from 'styled-components';
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user