Skip to content

Commit

Permalink
fix web
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
  • Loading branch information
BeryJu committed Aug 5, 2023
1 parent 31a0cdd commit 747cb90
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions web/src/admin/system-tasks/SystemTaskListPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ export class SystemTaskListPage extends TablePage<Task> {
startIndex: 1,
endIndex: tasks.length,
current: page,
next: 0,
previous: 0,
},
results: tasks,
};
Expand Down
2 changes: 2 additions & 0 deletions web/src/elements/forms/DeleteBulkForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ export class DeleteObjectsTable<T> extends Table<T> {
totalPages: 1,
startIndex: 1,
endIndex: this.objects.length,
next: 0,
previous: 0,
},
results: this.objects,
});
Expand Down
2 changes: 2 additions & 0 deletions web/src/elements/user/UserDevicesList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ export class UserDeviceList extends MFADevicesPage {
totalPages: 1,
startIndex: 1,
endIndex: res.length,
next: 0,
previous: 0,
},
results: res,
};
Expand Down
2 changes: 2 additions & 0 deletions web/src/user/user-settings/mfa/MFADevicesPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ export class MFADevicesPage extends Table<Device> {
totalPages: 1,
startIndex: 1,
endIndex: devices.length,
next: 0,
previous: 0,
},
results: devices,
};
Expand Down

0 comments on commit 747cb90

Please sign in to comment.