Skip to content

Commit

Permalink
Améliore le label du lien "Audit manquant" (#577)
Browse files Browse the repository at this point in the history
* Improve missing audit link context

* update changelog
  • Loading branch information
bellangerq authored Dec 1, 2023
1 parent 39dfcf1 commit 80057da
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions confiture-web-app/src/assets/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Tous les changements notables de Ara sont documentés ici avec leur date, leur catégorie (nouvelle fonctionnalité, correction de bug ou autre changement) et leur pull request (PR) associée.

## 01/12/2023

### Autres changements ⚙️

- Ajout de plus de contexte le message indiquant qu’aucun audit n’est présent sur le tableau de bord ([#577](https://github.com/DISIC/Ara/pull/577))

## 30/11/2023

### Nouvelles fonctionnalités 🚀
Expand Down
11 changes: 8 additions & 3 deletions confiture-web-app/src/components/account/dashboard/NoAudit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,21 @@ defineProps<{ label: string }>();
</script>

<template>
<div class="fr-py-3w fr-px-2w wrapper">
<RouterLink :to="{ name: 'missing-audit' }">{{ label }}</RouterLink>
</div>
<p class="fr-pt-2w fr-pb-3w fr-px-2w wrapper">
<span class="fr-text--md fr-text--bold fr-mb-1v">{{ label }}</span>

<RouterLink :to="{ name: 'missing-audit' }" class="fr-text--sm fr-mb-0">
Vous ne retrouvez pas un audit ?
</RouterLink>
</p>
</template>

<style scoped>
.wrapper {
background: var(--background-alt-blue-france);
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
</style>

0 comments on commit 80057da

Please sign in to comment.