Skip to content

Commit f5452b5

Browse files
authored
Bug/dave 403 lcm listenausgabe (#235)
* überlappenden Button gefixed * fix Belastungsplan fahrtrichtung
1 parent adaccc8 commit f5452b5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function drawArrowsPointingSouth(
132132
const arrayOfDataForDirectionSouth = groupedByDirection.find(
133133
(obj) =>
134134
obj.direction === Himmelsrichtungen.SUED ||
135-
obj.direction === Himmelsrichtungen.OST
135+
obj.direction === Himmelsrichtungen.WEST
136136
);
137137
arrayOfDataForDirectionSouth?.data.forEach((mq) => {
138138
querschnittGroup.value.add(
@@ -267,7 +267,7 @@ function drawArrowsPointingNorth(
267267
const arrayOfDataForDirectionNorth = groupedByDirection.find(
268268
(obj) =>
269269
obj.direction === Himmelsrichtungen.NORD ||
270-
obj.direction === Himmelsrichtungen.WEST
270+
obj.direction === Himmelsrichtungen.OST
271271
);
272272
arrayOfDataForDirectionNorth?.data.forEach((mq) => {
273273
querschnittGroup.value.add(

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<v-tabs-window-item :value="TAB_LISTENAUSGABE">
8989
<v-sheet
9090
:max-height="contentHeight"
91-
width="100%"
91+
width="97%"
9292
>
9393
<banner-messtelle-tabs
9494
v-if="isBiggerThanFiveYears"

frontend/src/components/zaehlstelle/ZaehldatenDiagramme.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
<v-tabs-window-item :value="TAB_LISTENAUSGABE">
132132
<v-sheet
133133
:max-height="contentHeight"
134-
width="99%"
134+
width="97%"
135135
>
136136
<zaehldaten-listenausgabe
137137
:listenausgabe-data="listenausgabeDTO"

0 commit comments

Comments
 (0)