mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-07 09:06:26 +00:00
11 lines
302 B
C#
11 lines
302 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Components;
|
|
|
|
public partial class PreviewExperimental : ComponentBase
|
|
{
|
|
[Parameter]
|
|
public bool ApplyInnerScrollingFix { get; set; }
|
|
|
|
private string Classes => this.ApplyInnerScrollingFix ? "InnerScrollingFix" : string.Empty;
|
|
} |