From 0ac544779a4163558861c0fd7769064557647e86 Mon Sep 17 00:00:00 2001 From: Michiel Post Date: Fri, 11 Oct 2024 11:43:13 +0200 Subject: [PATCH] Fixed build errors --- src/aoWebWallet/Shared/Components/ActionInputComponent.razor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aoWebWallet/Shared/Components/ActionInputComponent.razor b/src/aoWebWallet/Shared/Components/ActionInputComponent.razor index cfd89fb..ccb337d 100644 --- a/src/aoWebWallet/Shared/Components/ActionInputComponent.razor +++ b/src/aoWebWallet/Shared/Components/ActionInputComponent.razor @@ -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)) @@ -105,7 +105,7 @@ else if (!(mudIntField?.ValidationErrors.Any() ?? false)) { - mudIntField?.SetText(ActionParam.Value); + mudIntField?.SetText(ActionParam.Value ?? string.Empty); } base.OnAfterRender(firstRender);