Skip to content

Commit

Permalink
review: keep ul/li
Browse files Browse the repository at this point in the history
  • Loading branch information
abulte committed Dec 2, 2024
1 parent d190875 commit 5c8429b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/views/organizations/OrganizationDetailView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,8 @@ watchEffect(() => {
<div v-if="!datasets?.length">
Pas de jeu de données pour cette organisation.
</div>
<div
v-else
class="fr-grid-row fr-grid-row--gutters fr-grid-row--middle justify-between fr-pb-1w"
>
<div class="fr-col-md-12">
<ul v-else class="fr-grid-row fr-grid-row--gutters">
<li class="fr-col-md-12">
<DatasetCard
v-for="d in datasets"
:key="d.id"
Expand All @@ -137,8 +134,8 @@ watchEffect(() => {
params: { oid: d.organization?.id }
}"
/>
</div>
</div>
</li>
</ul>
</GenericContainer>
<DsfrPagination
v-if="pages.length"
Expand Down

0 comments on commit 5c8429b

Please sign in to comment.