mirror of https://github.com/vector-im/riot-web
Update checkbox
parent
8546d09fc4
commit
15f94d3732
|
@ -19,6 +19,7 @@ import PropTypes from "prop-types";
|
|||
import {_t, pickBestLanguage} from "../../../languageHandler";
|
||||
import * as sdk from "../../..";
|
||||
import {objectClone} from "../../../utils/objects";
|
||||
import StyledCheckbox from "../elements/StyledCheckbox";
|
||||
|
||||
export default class InlineTermsAgreement extends React.Component {
|
||||
static propTypes = {
|
||||
|
@ -90,8 +91,9 @@ export default class InlineTermsAgreement extends React.Component {
|
|||
<div key={i} className='mx_InlineTermsAgreement_cbContainer'>
|
||||
<div>{introText}</div>
|
||||
<div className='mx_InlineTermsAgreement_checkbox'>
|
||||
<input type='checkbox' onChange={() => this._togglePolicy(i)} checked={policy.checked} />
|
||||
<StyledCheckbox onChange={() => this._togglePolicy(i)} checked={policy.checked}>
|
||||
{_t("Accept")}
|
||||
</StyledCheckbox>
|
||||
</div>
|
||||
</div>,
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue