Skip to content

Commit

Permalink
Removed some commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrohanea committed May 14, 2020
1 parent 4c56b25 commit d297ad4
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public TItem Value
set
{
var newerStringValue = EqualValues(value, default) ? string.Empty : ComputeStringValue(value);
if(newerStringValue != StringValue)
if (newerStringValue != StringValue)
{
StringValue = newerStringValue;
}
Expand Down Expand Up @@ -226,11 +226,5 @@ private string ComputeStringValue(TItem obj)
{
return CustomStringSelector?.Invoke(obj) ?? obj?.ToString();
}

// protected async override Task OnFirstAfterRenderAsync()
// {
// await base.OnFirstAfterRenderAsync();
// await JsInvokeAsync<object>("matBlazor.matAutocomplete.init", Ref);
// }
}
}

0 comments on commit d297ad4

Please sign in to comment.