[develop | DONE | FIX] Change Sorting options Dsc. to Desc.

This commit is contained in:
argirok 2024-07-17 13:10:44 +03:00
parent 92f799e63b
commit ac200a89ac
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export class BrowseStakeholderBaseComponent<T> extends StakeholderBaseComponent
gridView: boolean = true;
sortOptions: Option[] = [
{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];
sortBy: string = null;