Skip to content

Commit 91621a7

Browse files
committed
Cleanups
1 parent 3059c34 commit 91621a7

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/Components/WebAssembly/WebAssembly/src/Rendering/WebAssemblyRenderer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ internal sealed partial class WebAssemblyRenderer : WebRenderer
2424
private readonly ILogger _logger;
2525
private readonly Dispatcher _dispatcher;
2626
private readonly IInternalJSImportMethods _jsMethods;
27-
private static readonly ComponentPlatform _componentPlatform = new("WebAssembly", isInteractive: true, RenderMode.InteractiveWebAssembly);
27+
private static readonly ComponentPlatform _componentPlatform = new("Webassembly", isInteractive: true, RenderMode.InteractiveWebAssembly);
2828

2929
public WebAssemblyRenderer(IServiceProvider serviceProvider, ILoggerFactory loggerFactory, JSComponentInterop jsComponentInterop)
3030
: base(serviceProvider, loggerFactory, DefaultWebAssemblyJSRuntime.Instance.ReadJsonSerializerOptions(), jsComponentInterop)

src/Components/WebView/WebView/src/Services/WebViewRenderer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.Components.WebView.Services;
99

1010
internal sealed class WebViewRenderer : WebRenderer
1111
{
12-
private static readonly ComponentPlatform _componentPlatform = new("WebView", isInteractive: true, renderMode: null);
12+
private static readonly ComponentPlatform _componentPlatform = new("Webview", isInteractive: true, renderMode: null);
1313
private readonly Queue<UnacknowledgedRenderBatch> _unacknowledgedRenderBatches = new();
1414
private readonly Dispatcher _dispatcher;
1515
private readonly IpcSender _ipcSender;

src/Components/test/E2ETest/ServerExecutionTests/ServerHostRenderModeTest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
using Xunit.Abstractions;
1010

1111
namespace Microsoft.AspNetCore.Components.E2ETests.ServerExecutionTests;
12+
1213
public class ServerInteractiveHostRenderModeTest : InteractiveHostRendermodeTest
1314
{
1415
public ServerInteractiveHostRenderModeTest(BrowserFixture browserFixture, ToggleExecutionModeServerFixture<Program> serverFixture, ITestOutputHelper output) : base(browserFixture, serverFixture.WithServerExecution(), output)

0 commit comments

Comments
 (0)