Skip to content

Commit

Permalink
Corrige le menu contextuel et l'icone pour les audits non commencé da…
Browse files Browse the repository at this point in the history
…ns la liste des audits (#886)

* fix contextual menu and icon in audits list for not started audits

* set overview link instead of report link for not started audits

* update changelog
  • Loading branch information
bellangerq authored Dec 11, 2024
1 parent 059c228 commit d8a1b3c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 11 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,28 @@

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.

## 06/12/2024
## 11/12/2024

- Corrige la possibilité de supprimer une image liée à un critère d’élément transverse ([#898](https://github.com/DISIC/Ara/pull/898))
### Corrections 🐛

## 27/11/2024
- Corrige le lien et l’icône des audits "non commencés" dans la liste des audits du compte ([#886](https://github.com/DISIC/Ara/pull/886))

## 06/12/2024

### Corrections 🐛

- Corrige l’ordre des pages dans le tableau de répartition des critères par page dans le rapport ([#885](https://github.com/DISIC/Ara/pull/885))
- Corrige la possibilité de supprimer une image liée à un critère d’élément transverse ([#898](https://github.com/DISIC/Ara/pull/898))

## 27/11/2024

### Autres changements ⚙️

- Affiche seulement les pages avec des commentaires C ou NA dans l’onglet du rapport "Points d’amélioration" ([#884](https://github.com/DISIC/Ara/pull/884))

### Corrections 🐛

- Corrige l’ordre des pages dans le tableau de répartition des critères par page dans le rapport ([#885](https://github.com/DISIC/Ara/pull/885))

## 22/11/2024

### Autres changements ⚙️
Expand Down
22 changes: 15 additions & 7 deletions confiture-web-app/src/components/account/dashboard/AuditRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ function copyStatementLink(uniqueId: string) {
<!-- Main action -->
<RouterLink
:to="
isInProgress
isInProgress || isNotStarted
? {
name: 'audit-generation',
params: { uniqueId: audit.editUniqueId }
Expand All @@ -259,9 +259,11 @@ function copyStatementLink(uniqueId: string) {
"
class="fr-btn fr-btn--secondary fr-btn--icon-left audit-main-action"
:class="
isInProgress ? 'fr-icon-edit-line' : 'fr-icon-eye-line no-external-icon'
isInProgress || isNotStarted
? 'fr-icon-edit-line'
: 'fr-icon-eye-line no-external-icon'
"
:target="isInProgress ? null : '_blank'"
:target="isInProgress || isNotStarted ? null : '_blank'"
>
{{
isNotStarted
Expand Down Expand Up @@ -304,7 +306,7 @@ function copyStatementLink(uniqueId: string) {
<li class="dropdown-item">
<RouterLink
:to="
isInProgress
isInProgress || isNotStarted
? {
name: 'report',
params: { uniqueId: audit.consultUniqueId }
Expand All @@ -314,12 +316,18 @@ function copyStatementLink(uniqueId: string) {
params: { uniqueId: audit.editUniqueId }
}
"
:target="isInProgress ? '_blank' : undefined"
:target="isInProgress || isNotStarted ? '_blank' : undefined"
:class="`fr-btn fr-btn--tertiary-no-outline fr-btn--icon-left ${
isInProgress ? 'fr-icon-eye-line' : 'fr-icon-file-line'
isInProgress || isNotStarted
? 'fr-icon-eye-line'
: 'fr-icon-file-line'
} fr-m-0 no-external-icon`"
>
{{ isInProgress ? "Voir le rapport" : "Accéder à l’audit" }}
{{
isInProgress || isNotStarted
? "Voir le rapport"
: "Accéder à l’audit"
}}
<span class="fr-sr-only"> {{ audit.procedureName }}</span>
</RouterLink>
</li>
Expand Down

0 comments on commit d8a1b3c

Please sign in to comment.