Skip to content

Commit

Permalink
Merge pull request #229 from wp99cp/develop
Browse files Browse the repository at this point in the history
fix "true" in meal participant calculation
  • Loading branch information
wp99cp committed May 2, 2024
2 parents dc1e9f8 + 7d237f4 commit 8c17e7f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emeal/menuplanung",
"version": "1.15.2",
"version": "1.15.3",
"license": "MIT",
"copyrights": "© 2019 - 2024 Cevi Züri 11 - eMeal Menüplanung",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h2>Neue Versionen - v1.15.2</h2>
<h2>Neue Versionen - v1.15.3</h2>

<div mat-dialog-content>

Expand All @@ -7,7 +7,7 @@ <h3>Was gibt es neues in eMeal - Menüplanung? </h3>
<p>Dieses Update behebt einen Fehler:</p>

<p class="news-element news-fixed">
Bisher hat das Berechnen einer Mahlzeit nur für Leiter*innen nicht funktioniert. Dieser Fehler wurde behoben.
Behebt einen Dahrstellungsfehler bei der Personenberechnung in der Rezeptansicht.
</p>

</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h3>Anzahl Teilnehmende</h3>
camp.vegetarians,
camp.leaders,
specificMeal.participants,
this.recipeForm.get('overrideParticipants').value,
this.recipeForm.get('overrideParticipants').value ? this.recipeForm.get('participants').value : 0,
specificMeal.overrideParticipants,
this.recipeForm.get('overrideParticipants').value,
this.recipeForm.get('vegi').value)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ <h2>Informationen zur aktuellen Version von eMeal.</h2>
Fehlerbehebungen.
</p>


<h3>Neues in der Version 1.15.3 (2. Mai 2024)</h3>

<p class="news-element news-fixed">
Behebt einen Dahrstellungsfehler bei der Personenberechnung in der Rezeptansicht.
</p>

<h3>Neues in der Version 1.15.2 (1. Mai 2024)</h3>

<p class="news-element news-fixed">
Expand Down

0 comments on commit 8c17e7f

Please sign in to comment.