Skip to content

Commit

Permalink
Merge branch 'hotfix/0.24.2' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
polosson committed May 22, 2024
2 parents 79a676f + 9c4ae22 commit 89ccba2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Tous les changements notables sur le projet sont documentés dans ce fichier.

Ce projet adhère au principe du [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.24.2 (2024-05-22)

- Rétablit l'information du parc, qui avait disparu de la fiche matériel.

## 0.24.1 (2024-05-14)

- Corrige le click sur les éléments déroulant sur mobile / tablette.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ const MaterialViewInfos = defineComponent({
rentalPrice,
replacementPrice,
material,
hasMultipleParks,
parkName,
} = this;

const {
Expand Down Expand Up @@ -217,6 +219,13 @@ const MaterialViewInfos = defineComponent({
</section>
)}
<section class="MaterialViewInfos__extras">
{hasMultipleParks && (
<div class="MaterialViewInfos__extra MaterialViewInfos__extra--park">
<p class="MaterialViewInfos__extra__item">
{__('page.material-view.infos.park-name', { name: parkName })}
</p>
</div>
)}
<div class="MaterialViewInfos__extra MaterialViewInfos__extra--categories">
<p class="MaterialViewInfos__extra__item">
{__('category')}: <strong>{categoryName}</strong>
Expand Down

0 comments on commit 89ccba2

Please sign in to comment.