0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-27 05:02:43 +00:00

Update LockLookup placeholder value

This commit is contained in:
G.Ambatte
2024-06-08 17:08:05 +12:00
parent 634b099ade
commit 01ae858a14

View File

@@ -231,7 +231,7 @@ const LockLookup = createClass({
render : function() {
return <div className='brewLookup'>
<h2>{this.props.title}</h2>
<input type='text' value={this.state.query} onChange={this.handleChange} placeholder='edit or share id' />
<input type='text' value={this.state.query} onChange={this.handleChange} placeholder='share id' />
<button onClick={this.clickFn}>
<i className={`fas ${!this.state.searching ? 'fa-search' : 'fa-spin fa-spinner'}`} />
</button>