[develop | DONE | FIX] Change Sorting options Dsc. to Desc.
This commit is contained in:
parent
92f799e63b
commit
ac200a89ac
|
@ -20,7 +20,7 @@ export class BrowseStakeholderBaseComponent<T> extends StakeholderBaseComponent
|
||||||
gridView: boolean = true;
|
gridView: boolean = true;
|
||||||
sortOptions: Option[] = [
|
sortOptions: Option[] = [
|
||||||
{value: 'alphAsc', label: 'Alphabetically Asc. (A-Z)'},
|
{value: 'alphAsc', label: 'Alphabetically Asc. (A-Z)'},
|
||||||
{value: 'alphDsc', label: 'Alphabetically Dsc. (Z-A)'},
|
{value: 'alphDsc', label: 'Alphabetically Desc. (Z-A)'},
|
||||||
];
|
];
|
||||||
pageOptions: number[] = [10, 20, 30, 40];
|
pageOptions: number[] = [10, 20, 30, 40];
|
||||||
sortBy: string = null;
|
sortBy: string = null;
|
||||||
|
|
Loading…
Reference in New Issue