mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 13:00:20 +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);
 | 
						|
    }
 | 
						|
} |