Skip to content

Commit

Permalink
fix(Contact Page): l'image empêchait de build le frontend vu3 (#4800)
Browse files Browse the repository at this point in the history
  • Loading branch information
Charline-L authored Dec 18, 2024
1 parent 5b5b19b commit cf6ed12
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion 2024-frontend/src/components/AppFormSendInquiry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ import AppLinkMailto from "@/components/AppLinkMailto.vue"
/* Store */
const store = useRootStore()
/* Images */
const sittingDoodle = "/static/images/doodles-dsfr/primary/SittingDoodle.png"
/* Save user meta info */
const meta = {
userId: store.loggedUser?.id,
Expand Down Expand Up @@ -124,7 +127,7 @@ const sendInquiry = () => {
</DsfrCallout>
</div>
<div class="fr-col-4 fr-hidden fr-unhidden-lg">
<img src="/static/images/doodles-dsfr/primary/SittingDoodle.png" class="app-form-send-inquiry__illustration" />
<img :src="sittingDoodle" class="app-form-send-inquiry__illustration" />
</div>
</div>
</div>
Expand Down

0 comments on commit cf6ed12

Please sign in to comment.