Skip to content

Commit

Permalink
Update associated datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
egauzens committed Jul 2, 2024
1 parent 38aba78 commit 1791668
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/about/projects/[projectId].vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
</div>
<div class="associated-datasets-container pr-16" :style="{ maxHeight: associatedDatasetsMaxHeight + 'px' }">
<br />
<div v-for="(dataset, index) in associatedDatasets" :key="index" class="body4 ">
<dataset-card :id="dataset.id" />
<div v-for="(dataset, index) in associatedDatasets" :key="index" class="body4">
<dataset-card :id="Number(dataset.objectID)" />
</div>
</div>
</el-col>
Expand Down Expand Up @@ -101,7 +101,7 @@ export default {
})
return {
fields: project.fields,
associatedDatasets: propOr([], 'datasets', associatedDatasets),
associatedDatasets,
associatedDatasetsMaxHeight: ref(0)
}
} catch (e) {
Expand Down

0 comments on commit 1791668

Please sign in to comment.