1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

Merge pull request #120 from oceanprotocol/fix/publish

Fix publish step 2
This commit is contained in:
Matthias Kretschmann 2019-05-10 13:53:42 +02:00 committed by GitHub
commit 4b806939e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,8 +79,7 @@ export default class Input extends PureComponent<InputProps, InputState> {
name, name,
required, required,
onChange, onChange,
value, value
rows
} = this.props } = this.props
const wrapClass = this.inputWrapClasses() const wrapClass = this.inputWrapClasses()
@ -119,7 +118,7 @@ export default class Input extends PureComponent<InputProps, InputState> {
className={styles.input} className={styles.input}
onFocus={this.toggleFocus} onFocus={this.toggleFocus}
onBlur={this.toggleFocus} onBlur={this.toggleFocus}
rows={rows} {...this.props}
/> />
</div> </div>
) )