File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ const DatasetsListing = () => {
1414 < ListingComponent
1515 fetchDatasets = { fetchDatasets }
1616 breadcrumbData = { breadcrumbData }
17+ redirectionURL = { `/datasets` }
18+ placeholder = "Start typing to search for any Dataset"
1719 />
1820 ) ;
1921} ;
Original file line number Diff line number Diff line change @@ -48,6 +48,8 @@ const SectorDetailsPage = ({ params }: { params: { sectorSlug: string } }) => {
4848 categoryName = { sector ?. name }
4949 categoryDescription = { sector ?. description ?? undefined }
5050 categoryImage = { `/Sectors/${ sector . name } .svg` }
51+ redirectionURL = { `/datasets` }
52+ placeholder = "Start typing to search for any Dataset"
5153 />
5254 ) ;
5355} ;
Original file line number Diff line number Diff line change @@ -51,7 +51,11 @@ const UseCasesListingPage = () => {
5151 Explore Use Cases
5252 </ Text >
5353 </ div >
54- < ListingComponent fetchDatasets = { fetchUseCases } />
54+ < ListingComponent
55+ fetchDatasets = { fetchUseCases }
56+ placeholder = "Start typing to search for any Use Case"
57+ redirectionURL = { `/usecases` }
58+ />
5559 </ div >
5660 </ main >
5761 ) ;
You can’t perform that action at this time.
0 commit comments