Browse Source

UI-2980 Removes pagination from API call to fix Feature Keys Presence dropdown (#41)

4.3
Anthony Perish 8 years ago
committed by JRMaitre
parent
commit
b84138b8c3
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      submodules/devices/devices.js

+ 4
- 1
submodules/devices/devices.js View File

@ -1249,7 +1249,10 @@ define(function(require) {
self.callApi({
resource: 'user.list',
data: {
accountId: self.accountId
accountId: self.accountId,
filters: {
paginate: 'false'
}
},
success: function(data, status) {
args.hasOwnProperty('success') && args.success(data.data);


Loading…
Cancel
Save