mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2026-03-17 03:17:44 +00:00
Ajout de conditions v-if pour afficher les dates de début et de fin uniquement si elles sont présentes dans AccompanyingPeriodWorkEvaluationItem.vue
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
{{ trans(ACCOMPANYING_COURSE_WORK_START_DATE) }}
|
||||
:
|
||||
</span>
|
||||
<b>{{ formatDate(eval.startDate) }}</b>
|
||||
<b v-if="eval.startDate">{{ formatDate(eval.startDate) }}</b>
|
||||
</li>
|
||||
|
||||
<li v-if="eval.endDate">
|
||||
@@ -26,7 +26,7 @@
|
||||
{{ trans(ACCOMPANYING_COURSE_WORK_END_DATE) }}
|
||||
:
|
||||
</span>
|
||||
<b>{{ formatDate(eval.endDate) }}</b>
|
||||
<b v-if="eval.endDate">{{ formatDate(eval.endDate) }}</b>
|
||||
</li>
|
||||
</ul>
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user