From 35a6702e0d4c37e8a031ef767cee45708de18a15 Mon Sep 17 00:00:00 2001 From: hart_s3 Date: Wed, 17 Dec 2025 11:36:56 +0100 Subject: [PATCH] Enhance `ReviewAttachmentsDialog` with tooltips for better user guidance and improved file status indicators. --- .../Dialogs/ReviewAttachmentsDialog.razor | 40 +++++++++++++------ 1 file changed, 28 insertions(+), 12 deletions(-) diff --git a/app/MindWork AI Studio/Dialogs/ReviewAttachmentsDialog.razor b/app/MindWork AI Studio/Dialogs/ReviewAttachmentsDialog.razor index ba65f820..c0d0153b 100644 --- a/app/MindWork AI Studio/Dialogs/ReviewAttachmentsDialog.razor +++ b/app/MindWork AI Studio/Dialogs/ReviewAttachmentsDialog.razor @@ -5,35 +5,51 @@ Your attached files + + @T("Here you can see all attached files. Files that can no longer be found (deleted, renamed, or moved) are marked with a warning icon and a strikethrough name. You can remove any attachment using the trash can icon.") + + @foreach (var filePath in this.DocumentPaths) { @if (File.Exists(filePath)) { - - - - @Path.GetFileName(filePath) - + + + + + @Path.GetFileName(filePath) + + + + + } else { - - @Path.GetFileName(filePath) - + + + + + @Path.GetFileName(filePath) + + + - + + + } }