[bug fix][xs]: some datasets may not have owner organization.
This commit is contained in:
parent
cf6fbe60a8
commit
19f1d4b408
@ -40,17 +40,19 @@ function Recent() {
|
||||
<section className="my-10 mx-4 lg:my-20">
|
||||
<h1 className="text-2xl font-thin mb-4">Recent Datasets</h1>
|
||||
<div className="flex flex-col lg:flex-row">
|
||||
{result.results.map((resource, index) => (
|
||||
{result.results.map((dataset, index) => (
|
||||
<div
|
||||
key={index}
|
||||
className="border px-4 mb-4 mr-3 border-gray-100 w-5/6 shadow-sm"
|
||||
>
|
||||
<h1 className="text-2xl font-thin">{resource.title}</h1>
|
||||
<p className="text-gray-500">{resource.organization.description}</p>
|
||||
<h1 className="text-2xl font-thin">{dataset.title}</h1>
|
||||
<p className="text-gray-500">
|
||||
{dataset.organization && dataset.organization.description}
|
||||
</p>
|
||||
<Link
|
||||
href={`/@${
|
||||
resource.organization ? resource.organization.name : 'dataset'
|
||||
}/${resource.name}`}
|
||||
dataset.organization ? dataset.organization.name : 'dataset'
|
||||
}/${dataset.name}`}
|
||||
>
|
||||
<a className="pt-3 flex justify-end text-orange-500">
|
||||
View Dataset
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user