Search color
This commit is contained in:
parent
0bccdc26e9
commit
c6463e5534
2 changed files with 2 additions and 0 deletions
|
@ -102,6 +102,7 @@ class BoardComponent extends React.Component<Props, State> {
|
|||
ref={this.searchFieldRef}
|
||||
text={boardTree.getSearchText()}
|
||||
placeholderText="Search text"
|
||||
style={{ color: "#000000" }}
|
||||
onChanged={(text) => { this.searchChanged(text) }}
|
||||
onKeyDown={(e) => { this.onSearchKeyDown(e) }}></Editable>
|
||||
: <div className="octo-button" onClick={() => { this.setState({ ...this.state, isSearching: true }) }}>Search</div>
|
||||
|
|
|
@ -96,6 +96,7 @@ class TableComponent extends React.Component<Props, State> {
|
|||
ref={this.searchFieldRef}
|
||||
text={boardTree.getSearchText()}
|
||||
placeholderText="Search text"
|
||||
style={{ color: "#000000" }}
|
||||
onChanged={(text) => { this.searchChanged(text) }}
|
||||
onKeyDown={(e) => { this.onSearchKeyDown(e) }}></Editable>
|
||||
: <div className="octo-button" onClick={() => { this.setState({ ...this.state, isSearching: true }) }}>Search</div>
|
||||
|
|
Loading…
Reference in a new issue