diff options
author | benal01 <bja4245@rit.edu> | 2025-03-28 21:56:47 -0400 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-28 21:56:47 -0400 |
commit | 9e011d85fd307768f7cec7214ca873208574ecfb (patch) | |
tree | 691dacc5aca8029f9618c2d3258f2c84d5144bf0 /ufund-ui/src/app/components/need-list/need-list.component.ts | |
parent | 0b4c76c5dc7313ae42c62be3c682c1f88cec13fd (diff) | |
download | JellySolutions-9e011d85fd307768f7cec7214ca873208574ecfb.tar.gz JellySolutions-9e011d85fd307768f7cec7214ca873208574ecfb.tar.bz2 JellySolutions-9e011d85fd307768f7cec7214ca873208574ecfb.zip |
changed styling of search display to be wider and expand filter descriptions
Diffstat (limited to 'ufund-ui/src/app/components/need-list/need-list.component.ts')
-rw-r--r-- | ufund-ui/src/app/components/need-list/need-list.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/need-list/need-list.component.ts b/ufund-ui/src/app/components/need-list/need-list.component.ts index f935e03..4359cfa 100644 --- a/ufund-ui/src/app/components/need-list/need-list.component.ts +++ b/ufund-ui/src/app/components/need-list/need-list.component.ts @@ -43,7 +43,7 @@ export class NeedListComponent { sortSelection: string = 'sortByGoal'; SortingAlgoArrays: {func:sortAlgo,name:string, display:string[]}[] = [ - {func:sortByGoal,name:"sortByGoal", display:["Max Goal", "Min Goal"]}, + {func:sortByGoal,name:"sortByGoal", display:["Maximum Goal", "Minimum Goal"]}, {func:sortByName,name:"sortByName", display:["Name", "Name (Descending)"]}, ]; |