Skip to content

Commit

Permalink
Fixed build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
michielpost committed Oct 11, 2024
1 parent 7b93fff commit 0ac5447
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aoWebWallet/Shared/Components/ActionInputComponent.razor
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ else
{
if (!(mudTextField?.ValidationErrors.Any() ?? false))
{
mudTextField?.SetText(ActionParam.Value);
mudTextField?.SetText(ActionParam.Value ?? string.Empty);
}

if (!(mudProcessField?.ValidationErrors.Any() ?? false))
Expand All @@ -105,7 +105,7 @@ else

if (!(mudIntField?.ValidationErrors.Any() ?? false))
{
mudIntField?.SetText(ActionParam.Value);
mudIntField?.SetText(ActionParam.Value ?? string.Empty);
}

base.OnAfterRender(firstRender);
Expand Down

0 comments on commit 0ac5447

Please sign in to comment.