Skip to content

Commit

Permalink
cleanup directives
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Moreira committed Nov 23, 2024
1 parent 7bb257e commit fc1d628
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#region Using directives
using System.Collections.Generic;

using System;
using System.Linq;
using System.Threading.Tasks;
using Blazorise.Modules;
using Microsoft.AspNetCore.Components;
using Blazorise.Extensions;

#endregion

namespace Blazorise.DataGrid;
Expand All @@ -25,6 +25,7 @@ private class SelectItem
public string Text { get; private set; }
public object Value { get; private set; }
public bool Disabled { get; private set; }

public SelectItem( string text, object value, bool disabled )
{
Text = text;
Expand Down Expand Up @@ -98,7 +99,6 @@ protected override async Task OnAfterRenderAsync( bool firstRender )
{
await Focus();
}

}
}
await base.OnAfterRenderAsync( firstRender );
Expand All @@ -121,6 +121,7 @@ public async Task Select()
[CascadingParameter] public DataGrid<TItem> ParentDataGrid { get; set; }

[Inject] public IIdGenerator IdGenerator { get; set; }

/// <summary>
/// Gets or sets the <see cref="IJSUtilitiesModule"/> instance.
/// </summary>
Expand Down

0 comments on commit fc1d628

Please sign in to comment.