Skip to content
This repository was archived by the owner on Mar 10, 2026. It is now read-only.

Commit ffab03c

Browse files
author
Justin Slattery
committed
More generic place holder text in filter box
- Closes #3
1 parent 98d52b4 commit ffab03c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tabletable",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "A simple and extremely flexible table component written in React.",
55
"main": "dist/entry.js",
66
"scripts": {

src/Container.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export default class TabletableContainer extends React.Component {
126126
<div className={filterClasses}>
127127
<div className='input-group col-xs-4 col-xs-offset-8 room-bottom'>
128128
<button className={clearClasses} style={{position: 'absolute', right: '6px', top: '6px', zIndex: 3}} onClick={this.handleClearFilterClick}><i className='fa fa-times'></i> Clear</button>
129-
<input type='text' className='form-control' placeholder='Filter outputs' value={this.props.filterValue} onChange={this.handleFilterChange} />
129+
<input type='text' className='form-control' placeholder='Type to filter' value={this.props.filterValue} onChange={this.handleFilterChange} />
130130
</div>
131131
</div>
132132
{pager}

0 commit comments

Comments
 (0)