From d0455db13e76d505d2090c0326bbb1bae0e9de68 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Thu, 18 Dec 2025 08:24:03 +0100 Subject: [PATCH] Fixed vertical scrolling for very long file names --- .../Dialogs/ReviewAttachmentsDialog.razor | 46 +++++++++++-------- 1 file changed, 26 insertions(+), 20 deletions(-) diff --git a/app/MindWork AI Studio/Dialogs/ReviewAttachmentsDialog.razor b/app/MindWork AI Studio/Dialogs/ReviewAttachmentsDialog.razor index db29bebb..e3785e6c 100644 --- a/app/MindWork AI Studio/Dialogs/ReviewAttachmentsDialog.razor +++ b/app/MindWork AI Studio/Dialogs/ReviewAttachmentsDialog.razor @@ -13,7 +13,7 @@ -
+
@if (!this.DocumentPaths.Any()) { @@ -26,20 +26,23 @@ @if (File.Exists(filePath)) { - - - - - @Path.GetFileName(filePath) - - - +
+ + + + + @Path.GetFileName(filePath) + + + +
- + + Style="flex-shrink: 0;" + OnClick="@(() => this.DeleteAttachment(filePath))"/>
@@ -47,20 +50,23 @@ else { - - - - - @Path.GetFileName(filePath) - - - +
+ + + + + @Path.GetFileName(filePath) + + + +
+ Style="flex-shrink: 0;" + OnClick="@(() => this.DeleteAttachment(filePath))"/>
}