diff --git a/aspnetcore/blazor/components/render-modes.md b/aspnetcore/blazor/components/render-modes.md index d0ce2660cc..b5b26cd00c 100644 --- a/aspnetcore/blazor/components/render-modes.md +++ b/aspnetcore/blazor/components/render-modes.md @@ -287,7 +287,7 @@ else In the preceding example: -* When the value of `AssignedRenderMode` is null, the component adopts static SSR. Blazor event handling isn't functional in a browser with static SSR, so the component submits a form (GET request) with a `titleFilter` query string set to the user's `` value. The `Movie` component (`/movie`) can read the query string and process the value of `titleFilter` to render the component with the filtered results. +* When the value of `AssignedRenderMode` is `null`, the component adopts static SSR. Blazor event handling isn't functional in a browser with static SSR, so the component submits a form (GET request) with a `titleFilter` query string set to the user's `` value. The `Movie` component (`/movie`) can read the query string and process the value of `titleFilter` to render the component with the filtered results. * Otherwise, the render mode is any of `InteractiveServer`, `InteractiveWebAssembly`, or `InteractiveAuto`. The component is capable of using an event handler delegate (`FilterMovies`) and the value bound to the `` element (`titleFilter`) to filter movies interactively over the background SignalR connection. :::moniker-end