diff --git a/src/Components/WebAssembly/WebAssembly/src/Rendering/WebAssemblyRenderer.cs b/src/Components/WebAssembly/WebAssembly/src/Rendering/WebAssemblyRenderer.cs index d7e2ed23dab28..8624cf5f49bef 100644 --- a/src/Components/WebAssembly/WebAssembly/src/Rendering/WebAssemblyRenderer.cs +++ b/src/Components/WebAssembly/WebAssembly/src/Rendering/WebAssemblyRenderer.cs @@ -24,7 +24,7 @@ internal sealed partial class WebAssemblyRenderer : WebRenderer private readonly ILogger _logger; private readonly Dispatcher _dispatcher; private readonly IInternalJSImportMethods _jsMethods; - private static readonly ComponentPlatform _componentPlatform = new("WebAssembly", isInteractive: true, RenderMode.InteractiveWebAssembly); + private static readonly ComponentPlatform _componentPlatform = new("Webassembly", isInteractive: true, RenderMode.InteractiveWebAssembly); public WebAssemblyRenderer(IServiceProvider serviceProvider, ILoggerFactory loggerFactory, JSComponentInterop jsComponentInterop) : base(serviceProvider, loggerFactory, DefaultWebAssemblyJSRuntime.Instance.ReadJsonSerializerOptions(), jsComponentInterop) diff --git a/src/Components/WebView/WebView/src/Services/WebViewRenderer.cs b/src/Components/WebView/WebView/src/Services/WebViewRenderer.cs index b0c8e9d22a0c4..ee03e489f49bb 100644 --- a/src/Components/WebView/WebView/src/Services/WebViewRenderer.cs +++ b/src/Components/WebView/WebView/src/Services/WebViewRenderer.cs @@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.Components.WebView.Services; internal sealed class WebViewRenderer : WebRenderer { - private static readonly ComponentPlatform _componentPlatform = new("WebView", isInteractive: true, renderMode: null); + private static readonly ComponentPlatform _componentPlatform = new("Webview", isInteractive: true, renderMode: null); private readonly Queue _unacknowledgedRenderBatches = new(); private readonly Dispatcher _dispatcher; private readonly IpcSender _ipcSender; diff --git a/src/Components/test/E2ETest/ServerExecutionTests/ServerHostRenderModeTest.cs b/src/Components/test/E2ETest/ServerExecutionTests/ServerHostRenderModeTest.cs index 852f7d0f7d68e..aa54339198c0f 100644 --- a/src/Components/test/E2ETest/ServerExecutionTests/ServerHostRenderModeTest.cs +++ b/src/Components/test/E2ETest/ServerExecutionTests/ServerHostRenderModeTest.cs @@ -9,6 +9,7 @@ using Xunit.Abstractions; namespace Microsoft.AspNetCore.Components.E2ETests.ServerExecutionTests; + public class ServerInteractiveHostRenderModeTest : InteractiveHostRendermodeTest { public ServerInteractiveHostRenderModeTest(BrowserFixture browserFixture, ToggleExecutionModeServerFixture serverFixture, ITestOutputHelper output) : base(browserFixture, serverFixture.WithServerExecution(), output)