diff --git a/src/app/categories/[categoryId]/project-ranking/done/page.tsx b/src/app/categories/[categoryId]/project-ranking/done/page.tsx index 0eb08ff6..84a2c666 100644 --- a/src/app/categories/[categoryId]/project-ranking/done/page.tsx +++ b/src/app/categories/[categoryId]/project-ranking/done/page.tsx @@ -32,7 +32,9 @@ const ProjectRankingDonePage = () => { width={250} height={250} /> -

Filtering done!

+

+ Fantastic job filtering +

{' '} Now let's find out which projects come out on top! @@ -52,13 +54,13 @@ const ProjectRankingDonePage = () => { // }); // } router.push( - `${Routes.Categories}/${categoryId}/project-ranking/summary`, + `${Routes.Categories}/${categoryId}/pairwise-ranking`, ); }} // disabled={updateCategoryMarkFiltered.isPending} className='w-full bg-primary' > - Start Pairwise Assesment + Start Ranking diff --git a/src/app/categories/[categoryId]/project-ranking/edit/page.tsx b/src/app/categories/[categoryId]/project-ranking/edit/page.tsx index 02ea76a0..c1fde1ba 100644 --- a/src/app/categories/[categoryId]/project-ranking/edit/page.tsx +++ b/src/app/categories/[categoryId]/project-ranking/edit/page.tsx @@ -169,7 +169,7 @@ const ProjectRankingEditPage = () => { Not Selected ({excludedProjects?.length || 0})

{excludedProjects?.map(project => ( -
+
{ `${Routes.Categories}/${selectedCategory?.id}/project-ranking/summary`, ); }} - className='w-full text-black shadow-md' + className='w-full text-black shadow-md' > - Discard Changes + Discard
-

+

{includedProjects?.length || 0} out of{' '} - {projects?.data.length || 0} projects selected + {projects?.data.length || 0}{' '} + + projects selected +

-

{selectedCategory?.name}

-

+

+ {selectedCategory?.name} +

+

Selected ({includedProjects?.length || 0})

{includedProjects?.map(project => ( @@ -110,12 +115,12 @@ const ProjectRankingSummaryPage = () => { data: { cid: +selectedCategoryId }, }); router.push( - `${Routes.Categories}/${selectedCategory?.id}/pairwise-ranking`, + `${Routes.Categories}/${categoryId}/project-ranking/done`, ); }} className='w-full bg-primary' > - Start ranking + Finish Filtering
diff --git a/src/app/components/TopNavigation.tsx b/src/app/components/TopNavigation.tsx index a13dad21..e49cbe78 100644 --- a/src/app/components/TopNavigation.tsx +++ b/src/app/components/TopNavigation.tsx @@ -13,7 +13,7 @@ const TopNavigation = ({ link = '/', text }: ITopNavigationProps) => { -

{text}

+

{text}

);