Sha256: 9cd9c7aef2e7f8756385679849af8365643641d7442e28f740ff446362b42c2b
Contents?: true
Size: 1.02 KB
Versions: 30
Compression:
Stored size: 1.02 KB
Contents
import React from 'react'; import PropTypes from 'prop-types'; import { noop } from 'foremanReact/common/helpers'; import { FormGroup, Checkbox } from '@patternfly/react-core'; import LabelIcon from 'foremanReact/components/common/LabelIcon'; import { translate as __ } from 'foremanReact/common/I18n'; const IgnoreSubmanErrors = ({ value, onChange, isLoading }) => ( <FormGroup fieldId="reg_katello_ignore"> <Checkbox ouiaId="reg-katello-ignore" label={ <span> {__('Ignore errors')}{' '} <LabelIcon text={__('Ignore subscription manager errors')} /> </span> } id="reg_katello_ignore" onChange={() => onChange({ ignoreSubmanErrors: !value })} isDisabled={isLoading} isChecked={value} /> </FormGroup> ); IgnoreSubmanErrors.propTypes = { value: PropTypes.bool, onChange: PropTypes.func, isLoading: PropTypes.bool, }; IgnoreSubmanErrors.defaultProps = { value: false, onChange: noop, isLoading: false, }; export default IgnoreSubmanErrors;
Version data entries
30 entries across 30 versions & 1 rubygems