From cfabf22fef1cb1f8daae3cdb5ce670fb2d2239a0 Mon Sep 17 00:00:00 2001 From: sbwalker Date: Tue, 12 Dec 2023 13:39:37 -0500 Subject: [PATCH] move message into file upload region --- Oqtane.Client/Modules/Controls/FileManager.razor | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Oqtane.Client/Modules/Controls/FileManager.razor b/Oqtane.Client/Modules/Controls/FileManager.razor index d779531e..1bbe4581 100644 --- a/Oqtane.Client/Modules/Controls/FileManager.razor +++ b/Oqtane.Client/Modules/Controls/FileManager.razor @@ -84,6 +84,14 @@ } } } + @if (!string.IsNullOrEmpty(_message)) + { +
+
+ +
+
+ } @if (_image != string.Empty) @@ -93,14 +101,6 @@ } - @if (!string.IsNullOrEmpty(_message)) - { -
-
- -
-
- } }