Skip to content

Commit bca9223

Browse files
author
Allan Asp Christensen
committed
fix af applicaiton list
1 parent d5fdaad commit bca9223

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/my-applications/list-applications/list-applications.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { SharedVariableService } from '../../shared-variable/shared-variable.ser
2020
styleUrls: ['./list-applications.component.scss'],
2121
})
2222
export class ListApplicationsComponent implements OnInit, OnChanges, OnDestroy {
23-
public pageLimit: 10;
23+
public pageLimit: number = 10;
2424
public sort: Sort[] = [
2525
{
2626
id: 1,
@@ -59,7 +59,7 @@ export class ListApplicationsComponent implements OnInit, OnChanges, OnDestroy {
5959
label: 'SORT.NAME-DESCENDING',
6060
},
6161
];
62-
public selectedSortId: 1;
62+
public selectedSortId: number = 1;
6363
public selectedSortObject: Sort = {
6464
id: 6,
6565
dir: 'DESC',

0 commit comments

Comments
 (0)