Skip to content

Commit 2c678a0

Browse files
Apply suggestions from code review
Co-authored-by: Wade Pickett <wpickett@microsoft.com>
1 parent 8683c34 commit 2c678a0

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

aspnetcore/blazor/components/virtualization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ The <xref:Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize%601> com
282282

283283
Assign a `VirtualizeAnchorMode` value to the `AnchorMode` parameter to control how the viewport behaves at list edges when items are dynamically added:
284284

285-
* `None`: No edge pinning. The viewport stays at current scroll position regardless of item changes.
285+
* `None`: No edge pinning. The viewport stays at the current scroll position regardless of item changes.
286286
* `Beginning`: Pins the viewport to the beginning of the list. When the user is at a scroll position near the top of the list and new items arrive at the beginning, the viewport stays at the top showing the newest items. For example, this pinning behavior is useful for a news feed user experience.
287287
* `End`: Pins the viewport to the end of the list. When the user is at a scroll position near the bottom of the list and new items arrive at the end, the viewport auto-scrolls to show them. If the user has scrolled away, auto-scroll disengages until they return to the bottom. For example, this pinning behavior is useful for a chat or logging user experience.
288288

aspnetcore/blazor/state-management/server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ In the following example, a form displays a message that's retained in `TempData
324324
private void Submit()
325325
{
326326
TempData!["Message"] = "Form submitted successfully!";
327-
NavigationManager.NavigateTo("/tempdata-example", forceLoad: true);
327+
NavigationManager.NavigateTo("/tempdata-example-1", forceLoad: true);
328328
}
329329
}
330330
```

aspnetcore/release-notes/aspnetcore-11/includes/blazor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Blazor WebAssembly apps can perform heavy computing on the client, but doing so
133133

134134
* Use the new `AnchorMode` parameter to control how the viewport behaves at list edges when items are dynamically added:
135135

136-
* `None`: No edge pinning. The viewport stays at current scroll position regardless of item changes.
136+
* `None`: No edge pinning. The viewport stays at the current scroll position regardless of item changes.
137137
* `Beginning`: Pins the viewport to the beginning of the list. For example, this pinning behavior is useful for a news feed user experience.
138138
* `End`: Pins the viewport to the end of the list. For example, this pinning behavior is useful for a chat or logging user experience.
139139

0 commit comments

Comments
 (0)