mirror of
https://github.com/ansible/awx.git
synced 2026-05-22 08:17:39 -02:30
Fixes linting issues
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import React, { Fragment } from 'react';
|
||||
import React from 'react';
|
||||
import { node, bool } from 'prop-types';
|
||||
import { TextListItem, TextListItemVariants } from '@patternfly/react-core';
|
||||
import styled from 'styled-components';
|
||||
@@ -32,7 +32,11 @@ const Detail = ({ label, value, fullWidth, className}) => {
|
||||
|
||||
return (
|
||||
<>
|
||||
<DetailName className={className} component={TextListItemVariants.dt} fullWidth={fullWidth}>
|
||||
<DetailName
|
||||
className={className}
|
||||
component={TextListItemVariants.dt}
|
||||
fullWidth={fullWidth}
|
||||
>
|
||||
{label}
|
||||
</DetailName>
|
||||
<DetailValue
|
||||
|
||||
@@ -164,7 +164,6 @@ class JobTemplateDetail extends Component {
|
||||
);
|
||||
|
||||
const renderMissingDataDetail = value => (
|
||||
|
||||
<MissingDetail label={value} value={i18n._(t`Deleted`)} />
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user