Skip to content

Commit

Permalink
Nidi/fix beta release issues (#57)
Browse files Browse the repository at this point in the history
* SAVEPOINT

* SAVEPOINT

* SAVEPOINT
  • Loading branch information
dniggeler committed Jun 29, 2024
1 parent 6618831 commit 91ed3d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/BlazorBvgRevisionApp/Layout/NavMenu.razor
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<MudNavMenu>
<MudNavLink Href="/" Match="NavLinkMatch.All">Einleitung</MudNavLink>
<MudNavLink Href="/Reform" Match="NavLinkMatch.All">Reformziele</MudNavLink>
<MudNavLink Href="/MeineVorsorge" Match="NavLinkMatch.Prefix">Meine Vorsorge</MudNavLink>
<MudNavLink Href="/MeineVorsorge" Match="NavLinkMatch.Prefix">Rechner</MudNavLink>
<MudNavLink Href="/Links" Match="NavLinkMatch.Prefix">Nützliche Links</MudNavLink>
</MudNavMenu>
2 changes: 1 addition & 1 deletion src/BlazorBvgRevisionApp/MyComponents/BvgPersonForm.razor
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</MudItem>

<MudItem md="4" xs="12">
<MudDatePicker Label="Geburtsdatum" Editable="true" @bind-Date="@Person.DateOfBirth" DateFormat="yyyy-MM-dd" Required="true" RequiredError="" Placeholder="Geburtstag" Mask="@(new DateMask("0000-00-00"))"/>
<MudDatePicker Label="Geburtsdatum" Editable="true" @bind-Date="@Person.DateOfBirth" DateFormat="yyyy-MM-dd" Required="true" RequiredError="" Placeholder="z.B.1981-02-28" Mask="@(new DateMask("0000-00-00"))"/>
</MudItem>

<MudItem md="4" xs="12">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<MudCheckBox T="bool" @bind-Value="PreCondition.IsEligibleBvg">BVG: mind. 15 Jahre versichert</MudCheckBox>
</MudItem>
<MudItem md="12">
<MudCheckBox T="bool" @bind-Value="PreCondition.IsEligibleAhv">AHV: 10 Jahre kein Unterbruch</MudCheckBox>
<MudCheckBox T="bool" @bind-Value="PreCondition.IsEligibleAhv">AHV: 10 Jahre vor Pensionerung kein Unterbruch</MudCheckBox>
</MudItem>
</MudGrid>

Expand Down

0 comments on commit 91ed3d2

Please sign in to comment.