Skip to content

Commit 922b805

Browse files
author
Parth Shah
committed
moving best match to the top of the sort list
1 parent d25d9c2 commit 922b805

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/projects/list/components/Projects/ProjectListProjectColHeader.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import _ from 'lodash'
33
import { Dropdown, DropdownItem } from 'appirio-tech-react-components'
44

55
const options = [
6+
{ val: 'best match', label: 'Best Match' },
67
{ val: 'createdAt desc', label: 'Latest first' },
78
{ val: 'createdAt', label: 'Oldest first' },
8-
{ val: 'name', label: 'Name A-Z' },
9-
{ val: 'best match', label: 'Best Match' }
9+
{ val: 'name', label: 'Name A-Z' }
1010
]
1111

1212
const ProjectListProjectColHeader = ({currentSortField, sortHandler}) => {

0 commit comments

Comments
 (0)