File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
src/app/payload-decoder/payload-decoder-edit Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,10 @@ export class PayloadDecoderEditComponent implements OnInit {
6060 public application : Application ;
6161 public iotDevices : IotDevice [ ] ;
6262 public iotDevice : IotDevice ;
63- public deviceSubscription : Subscription ;
63+ public pageLimit = environment . tablePageSize ;
64+ public pageTotal : number ;
65+ public pageOffset = 0 ;
66+ public deviceSubscription : Subscription ;
6467
6568 constructor (
6669 private translate : TranslateService ,
@@ -179,8 +182,8 @@ export class PayloadDecoderEditComponent implements OnInit {
179182 getApplications ( orgId ?: number ) : void {
180183 this . applicationsSubscription = this . applicationService
181184 . getApplications (
182- null ,
183- null ,
185+ this . pageLimit ,
186+ this . pageOffset * this . pageLimit ,
184187 null ,
185188 null ,
186189 orgId ? orgId : this . getCurrentOrganisationId ( )
You can’t perform that action at this time.
0 commit comments