From 4688a288e3b35d702ab77bea5ab393ac7576263b Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Wed, 15 Jul 2026 20:54:30 +0200 Subject: [PATCH] Adjusted button layout --- .../Components/AssistantBlock.razor | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/app/MindWork AI Studio/Components/AssistantBlock.razor b/app/MindWork AI Studio/Components/AssistantBlock.razor index c3d33a98..f669ea24 100644 --- a/app/MindWork AI Studio/Components/AssistantBlock.razor +++ b/app/MindWork AI Studio/Components/AssistantBlock.razor @@ -50,13 +50,18 @@ { } - @this.AdditionalActions - @if (this.SecurityBadge is not null) + @if (this.SecurityBadge is not null || this.AdditionalActions is not null) { - - @this.SecurityBadge - + + @if (this.SecurityBadge is not null) + { + + @this.SecurityBadge + + } + @this.AdditionalActions + }