mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 18:39:48 +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;
|
|
} |