AI-Studio/app/MindWork AI Studio/Components/ConfigurationBase.razor

15 lines
354 B
Plaintext

@inherits MSGComponentBase
@if (this.Body is not null)
{
@if (!this.Disabled() && this.IsLocked())
{
<MudTooltip Text="@TB("This feature is managed by your organization and has therefore been disabled.")" Arrow="true" Placement="Placement.Top">
@this.Body
</MudTooltip>
}
else
{
@this.Body
}
}