Skip to content

Commit

Permalink
Bug/dave 403 lcm listenausgabe (#235)
Browse files Browse the repository at this point in the history
* überlappenden Button gefixed

* fix Belastungsplan fahrtrichtung
  • Loading branch information
Der-Alex-K authored Nov 25, 2024
1 parent adaccc8 commit f5452b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function drawArrowsPointingSouth(
const arrayOfDataForDirectionSouth = groupedByDirection.find(
(obj) =>
obj.direction === Himmelsrichtungen.SUED ||
obj.direction === Himmelsrichtungen.OST
obj.direction === Himmelsrichtungen.WEST
);
arrayOfDataForDirectionSouth?.data.forEach((mq) => {
querschnittGroup.value.add(
Expand Down Expand Up @@ -267,7 +267,7 @@ function drawArrowsPointingNorth(
const arrayOfDataForDirectionNorth = groupedByDirection.find(
(obj) =>
obj.direction === Himmelsrichtungen.NORD ||
obj.direction === Himmelsrichtungen.WEST
obj.direction === Himmelsrichtungen.OST
);
arrayOfDataForDirectionNorth?.data.forEach((mq) => {
querschnittGroup.value.add(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<v-tabs-window-item :value="TAB_LISTENAUSGABE">
<v-sheet
:max-height="contentHeight"
width="100%"
width="97%"
>
<banner-messtelle-tabs
v-if="isBiggerThanFiveYears"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
<v-tabs-window-item :value="TAB_LISTENAUSGABE">
<v-sheet
:max-height="contentHeight"
width="99%"
width="97%"
>
<zaehldaten-listenausgabe
:listenausgabe-data="listenausgabeDTO"
Expand Down

0 comments on commit f5452b5

Please sign in to comment.