Skip to content

Commit bf24664

Browse files
authored
Fix PasswordField Value Bind (#582)
1 parent e71f3a4 commit bf24664

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CodeBeam.MudBlazor.Extensions/Components/PasswordField/MudPasswordField.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
Style="@Style"
2929
Variant="@Variant"
3030
Value="@ReadText"
31-
ValueChanged="(s) => SetTextAsync(s)"
31+
ValueChanged="(s) => SetTextAndUpdateValueAsync(s)"
3232
Placeholder="@Placeholder"
33-
Disabled=@Disabled
33+
Disabled="@Disabled"
3434
Underline="@Underline"
3535
ReadOnly="@ReadOnly"
3636
MaxLength="@MaxLength"

0 commit comments

Comments
 (0)