Changeset 7984 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/javascript/tracker/source/components/filterable-table/row.jsx
- Timestamp:
- 12/17/2018 07:35:16 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/javascript/tracker/source/components/filterable-table/row.jsx
r7976 r7984 33 33 cellContent = <a href={ this.props.row[ columnName + 'Url' ] }>{ this.props.row[ columnName ] }</a>; 34 34 } else if ( this.props.customRender[ columnName ] ) { 35 cellContent = this.props.customRender[ columnName ]( this.props.row [ columnName ] );35 cellContent = this.props.customRender[ columnName ]( this.props.row, this.props.row[ columnName ] ); 36 36 } else { 37 37 cellContent = this.props.row[ columnName ];
Note: See TracChangeset
for help on using the changeset viewer.