Skip to content

Commit

Permalink
More tweaks so the builds run
Browse files Browse the repository at this point in the history
  • Loading branch information
Xopabyteh committed Apr 16, 2024
1 parent 20b5ea4 commit 4cfdfb6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Facades/SubjectRegistrationProgressValidationFacade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ namespace MensaGymnazium.IntranetGen3.Facades;
[Authorize]
public class SubjectRegistrationProgressValidationFacade : ISubjectRegistrationProgressValidationFacade
{
private ISubjectRegistrationProgressValidationService subjectRegistrationProgressValidationService;
private IApplicationAuthenticationService applicationAuthenticationService;
private readonly ISubjectRegistrationProgressValidationService subjectRegistrationProgressValidationService;
private readonly IApplicationAuthenticationService applicationAuthenticationService;
public SubjectRegistrationProgressValidationFacade(
ISubjectRegistrationProgressValidationService subjectRegistrationProgressValidationService,
IApplicationAuthenticationService applicationAuthenticationService)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public record StudentRegistrationProgress(
/// meaning he meets all the signing criteria, or a combination of them,
/// that results in a valid registration
/// </summary>
public bool IsRegistrationValid { get; init; }
public bool IsRegistrationValid { get; init; } = IsRegistrationValid;

/// <summary>
/// Progress of the rule:
Expand Down
4 changes: 2 additions & 2 deletions Web.Client/Pages/Electives/HomeIndexMyElectives.razor
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
<div class="d-flex w-100 justify-content-between">
<h6 class="mb-1">Celkový počet hodin</h6>
<small>
@if (false)
@* @if (false)
{
<HxIcon Icon='BootstrapIcon.CheckCircleFill' CssClass="me-2 text-success" />
}
else
{
<HxIcon Icon='BootstrapIcon.ExclamationCircleFill' CssClass="me-2 text-warning" />
}
} *@
</small>
</div>
<b class="mb-1">@($"xh / yh")</b>
Expand Down

0 comments on commit 4cfdfb6

Please sign in to comment.