Skip to content

Commit 214f5ee

Browse files
authored
Fix DAVE-758 (#500)
1 parent 99b45fc commit 214f5ee

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

frontend/src/components/messstelle/charts/BelastungsplanMessquerschnittCard.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -579,11 +579,15 @@ function drawMessstelleInfo() {
579579
.font({ size: defaultFontSize, family: fontfamily })
580580
.newLine();
581581
if (dateUtils.isDateRange(chosenOptionsCopy.value.zeitraum)) {
582+
add
583+
.tspan(`Messzeitraum:`)
584+
.font({ size: defaultFontSize, family: fontfamily })
585+
.newLine();
582586
add
583587
.tspan(
584-
`Messzeitraum: ${dateUtils.formatDate(
588+
`${dateUtils.formatDate(
585589
chosenOptionsCopy.value.zeitraum[0]
586-
)} - ${dateUtils.formatDate(chosenOptionsCopy.value.zeitraum[1])}`
590+
)} - ${dateUtils.formatDate(chosenOptionsCopy.value.zeitraum[1])}`
587591
)
588592
.font({ size: defaultFontSize, family: fontfamily })
589593
.newLine();

0 commit comments

Comments
 (0)