mirror of
https://github.com/ansible/awx.git
synced 2026-05-24 09:07:45 -02:30
prettier
This commit is contained in:
@@ -21,7 +21,7 @@ function CredentialChip ({ credential, i18n, ...props }) {
|
||||
<strong>{type}: </strong>
|
||||
{credential.name}
|
||||
</Chip>
|
||||
)
|
||||
);
|
||||
}
|
||||
CredentialChip.propTypes = {
|
||||
credential: Credential.isRequired,
|
||||
|
||||
@@ -26,7 +26,9 @@ const DetailValue = styled(({ fullWidth, ...props }) => (
|
||||
`;
|
||||
|
||||
const Detail = ({ label, value, fullWidth }) => {
|
||||
if (!value && typeof value !== 'number') { return null; }
|
||||
if (!value && typeof value !== 'number') {
|
||||
return null;
|
||||
}
|
||||
return (
|
||||
<Fragment>
|
||||
<DetailName component={TextListItemVariants.dt} fullWidth={fullWidth}>
|
||||
|
||||
@@ -27,7 +27,8 @@ class JobListItem extends Component {
|
||||
onChange={onSelect}
|
||||
aria-labelledby={`check-action-${job.id}`}
|
||||
/>
|
||||
<DataListItemCells dataListCells={[
|
||||
<DataListItemCells
|
||||
dataListCells={[
|
||||
<DataListCell key="divider">
|
||||
<VerticalSeparator />
|
||||
<span>
|
||||
|
||||
@@ -23,7 +23,9 @@ export function jsonToYaml(jsonString) {
|
||||
}
|
||||
|
||||
export function isJson(jsonString) {
|
||||
if (typeof jsonString !== 'string') { return false; }
|
||||
if (typeof jsonString !== 'string') {
|
||||
return false;
|
||||
}
|
||||
let value;
|
||||
try {
|
||||
value = JSON.parse(jsonString);
|
||||
|
||||
Reference in New Issue
Block a user