Skip to content

Commit f92a99f

Browse files
committed
Fixed app selector on payload decoder edition
1 parent 79fede2 commit f92a99f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/app/payload-decoder/payload-decoder-edit/payload-decoder-edit.component.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@ export class PayloadDecoderEditComponent implements OnInit {
6262
public application: Application;
6363
public iotDevices: IotDevice[];
6464
public iotDevice: IotDevice;
65-
public pageLimit = environment.tablePageSize;
66-
public pageTotal: number;
67-
public pageOffset = 0;
6865
public deviceSubscription: Subscription;
6966
canEdit: boolean;
7067

@@ -187,8 +184,8 @@ export class PayloadDecoderEditComponent implements OnInit {
187184
getApplications(orgId?: number): void {
188185
this.applicationsSubscription = this.applicationService
189186
.getApplications(
190-
this.pageLimit,
191-
this.pageOffset * this.pageLimit,
187+
null,
188+
null,
192189
null,
193190
null,
194191
orgId ? orgId : this.getCurrentOrganisationId()

0 commit comments

Comments
 (0)