mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-17 01:24:36 +01:00
Add element id's and their documentation
This commit is contained in:
@@ -86,8 +86,9 @@ export default class DirInput extends React.Component<IProps, IState> {
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div className='DirInput'>
|
||||
<div className='DirInput' id='commonDirInputContainer'>
|
||||
<TextInput
|
||||
id='commonDirInputText'
|
||||
value={this.state.value}
|
||||
placeholder={this.state.placeholder}
|
||||
clearable={this.props.clearable !== undefined ? this.props.clearable : true}
|
||||
@@ -99,8 +100,8 @@ export default class DirInput extends React.Component<IProps, IState> {
|
||||
}}
|
||||
customClearBehaviour={this.props.customClearBehaviour}
|
||||
/>
|
||||
<div className="FileSelectIcon" onClick={this.handleIconClick}>
|
||||
<img src={File} />
|
||||
<div className="FileSelectIcon" id={'commonDirInputFileSelContainer'} onClick={this.handleIconClick}>
|
||||
<img id={'commonDirInputFileSelIcon'} src={File} />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user