Skip to content

Commit

Permalink
Fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaudDauce committed May 16, 2024
1 parent 9566b35 commit a5d9b7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</template>

<template #row="{ line: dataset }">
<td><a :href="dataset['URL']">{{ dataset['TITRE'] }}</a></td>
<td><a :href="dataset['URL'] || null">{{ dataset['TITRE'] }}</a></td>
<td>{{ dataset['ENSEMBLE DE DONNÉES'] }}</td>
<td>{{ dataset['THÉMATIQUE'] }}</td>
<td>{{ dataset['MINISTÈRE DE TUTELLE'] }}</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</template>

<template #row="{ line: commitment }">
<td><a :href="commitment['URL']">{{ commitment['TITRE'] }}</a></td>
<td><a :href="commitment['URL'] || null">{{ commitment['TITRE'] }}</a></td>
<td>{{ commitment['PRODUCTEUR'] }}</td>
<td>
<p class="fr-badge fr-badge--sm fr-badge--no-icon" :class="{
Expand Down

0 comments on commit a5d9b7b

Please sign in to comment.