mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
Warnings fixed
This commit is contained in:
@@ -11,9 +11,7 @@
|
||||
</RadzenDataGrid>
|
||||
|
||||
@code {
|
||||
int count;
|
||||
IEnumerable<Employee> employees;
|
||||
bool isLoading = false;
|
||||
|
||||
public class Employee
|
||||
{
|
||||
|
||||
@@ -75,6 +75,7 @@
|
||||
async Task OnMonthSelect(SchedulerMonthSelectEventArgs args)
|
||||
{
|
||||
console.Log($"MonthSelect: MonthStart={args.MonthStart} AppointmentCount={args.Appointments.Count()}");
|
||||
await Task.CompletedTask;
|
||||
}
|
||||
|
||||
async Task OnAppointmentSelect(SchedulerAppointmentSelectEventArgs<Appointment> args)
|
||||
|
||||
@@ -23,8 +23,6 @@
|
||||
employees = allEmployees.Where(e => e.ReportsTo == null);
|
||||
}
|
||||
|
||||
Employee draggedItem;
|
||||
|
||||
void ItemContextMenu(TreeItemContextMenuEventArgs args)
|
||||
{
|
||||
ContextMenuService.Open(args,
|
||||
|
||||
Reference in New Issue
Block a user