Skip to content

Commit

Permalink
FIX : modification des options de téléchargement de fichier pour dema…
Browse files Browse the repository at this point in the history
…nde de suppression
  • Loading branch information
pierre-maraval committed Oct 21, 2024
1 parent 06dc52c commit c5d955e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/MenuDownloadFile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@
<!-- FICHIER INITIAL SUPP -->
<v-list-item-title>Télécharger le fichier initial des {{ demande.typeSuppression }}</v-list-item-title>
</v-list-item>
<v-list-item v-if="demande.typeSuppression === 'PPN'" @click="downloadFile('fichier_correspondance', '.csv')">
<v-list-item @click="downloadFile('fichier_correspondance', '.csv')">
<!-- FICHIER PREPARE SUPP -->
<v-list-item-title>
Télécharger le fichier de correspondance PPN/RCR/EPN
</v-list-item-title>
</v-list-item>
<v-list-item v-if="isEnrichiAvailable" @click="downloadFile('fichier_valide', '.csv')">
<v-list-item v-if="demande.typeSuppression === 'PPN' && isEnrichiAvailable" @click="downloadFile('fichier_valide', '.csv')">
<!-- FICHIER ENRICHI SUPP -->
<v-list-item-title>Télécharger le fichier déposé</v-list-item-title>
</v-list-item>
Expand Down

0 comments on commit c5d955e

Please sign in to comment.