Skip to content

Commit

Permalink
Consistency in sortOptions syntax for filter doc ex
Browse files Browse the repository at this point in the history
  • Loading branch information
ElisaShapiro committed Dec 17, 2024
1 parent 686d4ce commit 0016fad
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ const SkeletonLoadingFilter = (props) => {
sortOptions={{
popularity: 'Popularity',
// eslint-disable-next-line
manager_title: "Manager\'s Title",
manager_title: 'Manager\'s Title',
// eslint-disable-next-line
manager_name: "Manager\'s Name",
manager_name: 'Manager\'s Name',
}}
sortValue={[{ name: 'popularity', dir: 'desc' }]}
>
Expand Down Expand Up @@ -124,8 +124,10 @@ const SkeletonLoadingFilter = (props) => {
results={1}
sortOptions={{
popularity: 'Popularity',
manager_title: "Manager's Title",
manager_name: "Manager's Name",
// eslint-disable-next-line
manager_title: 'Manager\'s Title',
// eslint-disable-next-line
manager_name: 'Manager\'s Name',
}}
sortValue={[{ name: 'popularity', dir: 'desc' }]}
>
Expand Down

0 comments on commit 0016fad

Please sign in to comment.