Skip to content

Commit

Permalink
adding auth to signalr hubs, fixing some issues with user/tenant context
Browse files Browse the repository at this point in the history
  • Loading branch information
codymullins committed Oct 30, 2024
1 parent 1a1ffd1 commit ea35e2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Pure.Blazor.Components/Forms/PureInput.razor
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
@onchange="OnChange"
@oninput="OnInput"
required="@Required"
@onblur="OnBlur"/>
@onblur="OnBlur"
disabled="@IsDisabled"/>


@if (Suffix != null)
Expand Down
2 changes: 2 additions & 0 deletions src/Pure.Blazor.Components/Forms/PureInput.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ private string? TextValue
[Parameter] public InputAutoComplete AutoComplete { get; set; }
[Parameter] public InputType InputType { get; set; } = InputType.Text;
[Parameter] public string? ContainerStyles { get; set; }
[Parameter] public bool IsDisabled { get; set; }

/// <summary>
/// Defaults to immediate mode
/// </summary>
Expand Down

0 comments on commit ea35e2b

Please sign in to comment.