mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-19 02:25:00 +01:00
Added documentation for react components under /common and fix for some leftover element id's on commonly used components that I missed.
This commit is contained in:
@@ -42,7 +42,7 @@ export default class Checkbox extends React.Component<IProps, IState> {
|
||||
return (
|
||||
<div className="Checkbox">
|
||||
<input type='checkbox' id={this.props.id} checked={this.state.checked} onChange={this.handleChange} />
|
||||
<label id="commonCheckboxLabel" htmlFor={this.props.id}>
|
||||
<label htmlFor={this.props.id}>
|
||||
<div className="CheckboxDisplay">
|
||||
{this.state.checked ? <img src={checkmark} alt='Checkmark' /> : null}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user