authscape 1.0.106 → 1.0.108

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -236,7 +236,7 @@ var Datatable = /*#__PURE__*/function (_Component) {
236
236
  paginationPerPage: this.props.pageLength ? this.props.pageLength : 10,
237
237
  paginationServer: true,
238
238
  pagination: true
239
- }, props.options, {
239
+ }, this.props.options, {
240
240
  //expandableRows={this.props.expandableRows}
241
241
  //expandableRowsComponent={this.props.expandableRowsComponent}
242
242
  paginationTotalRows: this.state.totalRows // onChangeRowsPerPage={this.handlePerRowsChange}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authscape",
3
- "version": "1.0.106",
3
+ "version": "1.0.108",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -108,7 +108,7 @@ export class Datatable extends Component {
108
108
  paginationPerPage={this.props.pageLength ? this.props.pageLength : 10}
109
109
  paginationServer
110
110
  pagination
111
- {...props.options}
111
+ {...this.props.options}
112
112
  //expandableRows={this.props.expandableRows}
113
113
  //expandableRowsComponent={this.props.expandableRowsComponent}
114
114
  paginationTotalRows={this.state.totalRows}