Skip to content

Commit

Permalink
Bumped version number for releasegit status
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissainty committed Nov 23, 2019
1 parent 1771526 commit 6b0eaad
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/BlazorServerSide/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class Startup
public void ConfigureServices(IServiceCollection services)
{
services.AddRazorPages();
services.AddServerSideBlazor();
services.AddServerSideBlazor(c => c.DetailedErrors = true);
}

// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
Expand Down
2 changes: 1 addition & 1 deletion src/Blazored.Typeahead/Blazored.Typeahead.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<RootNamespace>Blazored.Typeahead</RootNamespace>

<PackageId>Blazored.Typeahead</PackageId>
<Version>4.1.0</Version>
<Version>4.2.0</Version>
<Authors>Chris Sainty</Authors>
<Description>A typeahead control for Blazor applications</Description>
<Copyright>Copyright 2019 (c) Chris Sainty. All rights reserved.</Copyright>
Expand Down
1 change: 1 addition & 0 deletions src/Blazored.Typeahead/BlazoredTypeahead.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ protected async Task RemoveValue(TValue item)
protected async Task HandleClear()
{
SearchText = "";
IsShowingMask = false;

if (IsMultiselect)
await ValuesChanged.InvokeAsync(new List<TValue>());
Expand Down
2 changes: 2 additions & 0 deletions src/Blazored.Typeahead/wwwroot/blazored-typeahead.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@
.blazored-typeahead__input-mask-wrapper--disabled {
background-color: #e9ecef;
cursor: not-allowed;
border-radius: 5px 0 0 5px;
color: grey;
}

.blazored-typeahead__input-mask-wrapper--disabled:focus {
Expand Down

0 comments on commit 6b0eaad

Please sign in to comment.