mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 10:59:46 +00:00
11 lines
305 B
C#
11 lines
305 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Components;
|
|
|
|
public partial class PreviewExperimental : MSGComponentBase
|
|
{
|
|
[Parameter]
|
|
public bool ApplyInnerScrollingFix { get; set; }
|
|
|
|
private string Classes => this.ApplyInnerScrollingFix ? "InnerScrollingFix" : string.Empty;
|
|
} |