Search color

This commit is contained in:
Chen-I Lim 2020-10-08 21:05:57 -07:00
parent 0bccdc26e9
commit c6463e5534
2 changed files with 2 additions and 0 deletions

View file

@ -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>

View file

@ -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>