Removed extra title for absent student.
This commit is contained in:
@@ -134,7 +134,6 @@
|
|||||||
</MudItem>
|
</MudItem>
|
||||||
<MudItem xs="5" sm="4" lg="3">
|
<MudItem xs="5" sm="4" lg="3">
|
||||||
<MudStack>
|
<MudStack>
|
||||||
<MudText Typo="Typo.h4">Absent Students</MudText>
|
|
||||||
<StudentTextBoxSelector Students="@_students"
|
<StudentTextBoxSelector Students="@_students"
|
||||||
@bind-SelectedStudents="_absentStudents"
|
@bind-SelectedStudents="_absentStudents"
|
||||||
Title="Absent Students"
|
Title="Absent Students"
|
||||||
|
|||||||
@@ -4,7 +4,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
<MudAutocomplete T="Student"
|
<MudAutocomplete T="Student"
|
||||||
@ref="_autocomplete"
|
|
||||||
Label="@Label"
|
Label="@Label"
|
||||||
@bind-Value="_currentStudent"
|
@bind-Value="_currentStudent"
|
||||||
SearchFunc="@SearchStudents"
|
SearchFunc="@SearchStudents"
|
||||||
@@ -14,7 +13,6 @@
|
|||||||
CoerceText="false"
|
CoerceText="false"
|
||||||
CoerceValue="false"
|
CoerceValue="false"
|
||||||
AdornmentIcon="@Icons.Material.Filled.Search"
|
AdornmentIcon="@Icons.Material.Filled.Search"
|
||||||
AdornmentColor="Color.Primary"
|
|
||||||
Clearable="true">
|
Clearable="true">
|
||||||
<ItemTemplate Context="student">
|
<ItemTemplate Context="student">
|
||||||
@if (ShowFullName)
|
@if (ShowFullName)
|
||||||
@@ -83,7 +81,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
private Student? _currentStudentValue;
|
private Student? _currentStudentValue;
|
||||||
private MudAutocomplete<Student>? _autocomplete;
|
|
||||||
|
|
||||||
private async Task<IEnumerable<Student>> SearchStudents(string? searchText, CancellationToken cancellationToken)
|
private async Task<IEnumerable<Student>> SearchStudents(string? searchText, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user