File tree Expand file tree Collapse file tree
frontend/src/components/tables/ProjectsTable Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,31 +50,42 @@ const ProjectsTable = ({ projects }) => {
5050 return index + 1
5151 } ,
5252 id : 'index' ,
53- sortType : Sorters . Numeric ,
53+ ...Sorters . Numeric ,
54+ } ,
55+ {
56+ Header : 'Status' ,
57+ accessor : 'status' ,
58+ ...Sorters . Alphabetic ,
59+ ...Filters . ContainsSearch ,
5460 } ,
5561 {
5662 Header : 'Team' ,
5763 accessor : 'teamCode' ,
64+ ...Sorters . Alphanumeric ,
5865 ...Filters . ContainsSearch ,
5966 } ,
6067 {
6168 Header : 'Name' ,
6269 accessor : 'name' ,
70+ ...Sorters . Alphabetic ,
6371 ...Filters . ContainsSearch ,
6472 } ,
6573 {
6674 Header : 'Punchline' ,
6775 accessor : 'punchline' ,
76+ ...Sorters . Alphabetic ,
6877 ...Filters . ContainsSearch ,
6978 } ,
7079 {
7180 Header : 'Demo' ,
7281 accessor : 'demo' ,
82+ ...Sorters . Alphabetic ,
7383 ...Filters . ContainsSearch ,
7484 } ,
7585 {
7686 Header : 'Source' ,
7787 accessor : 'source' ,
88+ ...Sorters . Alphabetic ,
7889 ...Filters . ContainsSearch ,
7990 } ,
8091 ]
You can’t perform that action at this time.
0 commit comments