diff --git a/Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Components/Pages/Home.razor b/Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Components/Pages/Home.razor index b072c3ef0..486c9d415 100644 --- a/Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Components/Pages/Home.razor +++ b/Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Components/Pages/Home.razor @@ -23,8 +23,11 @@
Request ID: @DataStore.ActiveEvent.AwsRequestId
-Status: @DataStore.ActiveEvent.EventStatus
-Last Updated: @DataStore.ActiveEvent.LastUpdated
-Event JSON: ShowEventJson(DataStore.ActiveEvent)">@CreateSnippet(DataStore.ActiveEvent.EventJson)
- @if (DataStore.ActiveEvent.EventStatus == EventContainer.Status.Failure) + +Error Type: @DataStore.ActiveEvent.ErrorType
-- Error Response: -
@DataStore.ActiveEvent.ErrorResponse- +
- Response: -
@Utils.TryPrettyPrintJson(DataStore.ActiveEvent.Response)- - } -
Request ID: @DataStore.ActiveEvent.AwsRequestId
+Status: @DataStore.ActiveEvent.EventStatus
+Last Updated: @DataStore.ActiveEvent.LastUpdated
+Event JSON: ShowEventJson(DataStore.ActiveEvent)">@CreateSnippet(DataStore.ActiveEvent.EventJson)
+ @if (DataStore.ActiveEvent.EventStatus == EventContainer.Status.Failure) + { +Error Type: @DataStore.ActiveEvent.ErrorType
++ Error Response: +
@DataStore.ActiveEvent.ErrorResponse+ + } + else + { +
+ Response: +
@Utils.TryPrettyPrintJson(DataStore.ActiveEvent.Response)+ + }