mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-28 19:02:57 +00:00
15 lines
354 B
Plaintext
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
|
|
}
|
|
} |