mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 21:29:06 +00:00
11 lines
322 B
C#
11 lines
322 B
C#
|
using Microsoft.AspNetCore.Components;
|
||
|
|
||
|
namespace AIStudio.Tools;
|
||
|
|
||
|
public static class ElementReferenceExtensions
|
||
|
{
|
||
|
public static async ValueTask ScrollIntoViewAsync(this ElementReference elementReference, IJSRuntime jsRuntime)
|
||
|
{
|
||
|
await jsRuntime.InvokeVoidAsync("scrollToBottom", elementReference);
|
||
|
}
|
||
|
}
|