diff --git a/app/MindWork AI Studio/Dialogs/DocumentCheckDialog.razor b/app/MindWork AI Studio/Dialogs/DocumentCheckDialog.razor index 18f70643..385b6358 100644 --- a/app/MindWork AI Studio/Dialogs/DocumentCheckDialog.razor +++ b/app/MindWork AI Studio/Dialogs/DocumentCheckDialog.razor @@ -27,48 +27,57 @@ /> } - - @if (this.Document?.IsImage ?? false) - { - - - - } - else - { - - -
- -
-
-
- - - - } -
- + @if (!this.Document?.Exists ?? false) + { + + @T("The specified file could not be found. The file have been moved, deleted, renamed, or is otherwise inaccessible.") + + } + else + { + + @if (this.Document?.IsImage ?? false) + { + + + + } + else + { + + +
+ +
+
+
+ + + + } +
+ } +