diff options
| author | Hunternif <hunternif@gmail.com> | 2019-04-27 00:45:29 +0700 |
|---|---|---|
| committer | Hunternif <hunternif@gmail.com> | 2019-04-27 00:45:29 +0700 |
| commit | a4b877c0219994536ab7d4c1783d065f9154f70e (patch) | |
| tree | ab3eaf79c9de4f939be0bbef2df9d0fec12f638e /client/js/controllers | |
| parent | cfb2adb4ca73afc97cac6cb6c21f068c51fec99d (diff) | |
client: fix typo
Diffstat (limited to 'client/js/controllers')
| -rw-r--r-- | client/js/controllers/user_list_controller.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/js/controllers/user_list_controller.js b/client/js/controllers/user_list_controller.js index fa878d8..8451ada 100644 --- a/client/js/controllers/user_list_controller.js +++ b/client/js/controllers/user_list_controller.js @@ -51,7 +51,7 @@ class UserListController { defaultLimit: 30, getClientUrlForPage: (offset, limit) => { const parameters = Object.assign( - {}, this._ctx.parameters, {offset, offset, limit: limit}); + {}, this._ctx.parameters, {offset: offset, limit: limit}); return uri.formatClientLink('users', parameters); }, requestPage: (offset, limit) => { |