Skip to content

Commit

Permalink
hide external icon and update eye icon style (#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
bellangerq authored Feb 1, 2024
1 parent 3154404 commit 1c29bd8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,9 @@ const csvExportFilename = computed(() => {
: { name: 'report', params: { uniqueId: audit.consultUniqueId } }
"
class="fr-btn fr-btn--secondary fr-btn--icon-left audit-main-action"
:class="isInProgress ? 'fr-icon-edit-line' : 'fr-icon-eye-line'"
:class="
isInProgress ? 'fr-icon-edit-line' : 'fr-icon-eye-line no-external-icon'
"
:target="isInProgress ? null : '_blank'"
>
{{ isInProgress ? "Continuer l’audit" : "Voir le rapport" }}
Expand Down
2 changes: 1 addition & 1 deletion confiture-web-app/src/components/overview/ReportStep.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const auditIsReady = computed(() => {
params: { uniqueId: audit.consultUniqueId }
}"
target="_blank"
class="fr-btn fr-btn--secondary fr-btn--icon-left fr-icon-eye-fill fr-mb-0 no-external-icon"
class="fr-btn fr-btn--secondary fr-btn--icon-left fr-icon-eye-line fr-mb-0 no-external-icon"
title="Consulter le rapport - nouvelle fenêtre"
>
Consulter
Expand Down

0 comments on commit 1c29bd8

Please sign in to comment.