authscape 1.0.94 → 1.0.102

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authscape",
3
- "version": "1.0.94",
3
+ "version": "1.0.102",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -108,6 +108,7 @@ export class Datatable extends Component {
108
108
  paginationPerPage={this.props.pageLength ? this.props.pageLength : 10}
109
109
  paginationServer
110
110
  pagination
111
+ expandableRows={this.props.expandableRows}
111
112
  paginationTotalRows={this.state.totalRows}
112
113
  // onChangeRowsPerPage={this.handlePerRowsChange}
113
114
  onChangePage={this.handlePageChange}
@@ -209,7 +209,7 @@ export const apiService = (ctx = null) => {
209
209
  if (accessToken)
210
210
  {
211
211
  let defaultOptions = await setupDefaultOptions(null);
212
- const response = await instance.get('/UserManagement/get', defaultOptions);
212
+ const response = await instance.get('/UserManagement', defaultOptions);
213
213
  if (response != null && response.status == 200)
214
214
  {
215
215
  return response.data;