revert the changes and removed footer actions from AssistantBase component

This commit is contained in:
Nils Kruthoff 2026-09-15 14:27:22 +02:00
parent 4f826fa591
commit 0c98f84b42
No known key found for this signature in database
GPG Key ID: A5C0151B4DDB172C
2 changed files with 0 additions and 7 deletions

View File

@ -183,11 +183,6 @@
<ToolSelection Component="@this.Component" LLMProvider="@this.ProviderSettings" SelectedToolIds="@this.SelectedToolIds" SelectedToolIdsChanged="@this.SelectedToolIdsChanged" Disabled="@this.IsProcessing" />
}
@if (this.FooterActions is not null)
{
@this.FooterActions
}
<MudSpacer />
<HalluzinationReminder ContainerClass="my-0 ml-2"/>
</MudStack>

View File

@ -125,8 +125,6 @@ public abstract partial class AssistantBase<TSettings> : AssistantLowerBase wher
private protected virtual RenderFragment? HeaderActions => null;
private protected virtual RenderFragment? FooterActions => null;
private protected virtual RenderFragment? AfterResultContent => null;
protected virtual IReadOnlyList<IButtonData> FooterButtons => [];