From c2845e1592d7e3e6977556ebb39f3237d7be3d60 Mon Sep 17 00:00:00 2001 From: hart_s3 Date: Tue, 9 Dec 2025 15:20:15 +0100 Subject: [PATCH] Add file attachments badge and tooltip to ContentBlockComponent --- .../Chat/ContentBlockComponent.razor | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Chat/ContentBlockComponent.razor b/app/MindWork AI Studio/Chat/ContentBlockComponent.razor index 164b07c0..90f889bd 100644 --- a/app/MindWork AI Studio/Chat/ContentBlockComponent.razor +++ b/app/MindWork AI Studio/Chat/ContentBlockComponent.razor @@ -16,11 +16,19 @@ + @if (this.Content.FileAttachments.Count > 0) + { + + + + + + } @if (this.Content.Sources.Count > 0) { - + }