Skip to content

Commit

Permalink
Merge pull request #3346 from sbwalker/dev
Browse files Browse the repository at this point in the history
display uploaded file name in FileManager when ShowFiles = false
  • Loading branch information
sbwalker authored Sep 28, 2023
2 parents ae6c6a7 + b8622b8 commit 04196a1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Oqtane.Client/Modules/Controls/FileManager.razor
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@
</div>
</div>
}
else
{
if (_file != null)
{
<input class="form-control" @bind="@_file.Name" disabled />
}
}
@if (ShowUpload && _haseditpermission)
{
<div class="row">
Expand Down

0 comments on commit 04196a1

Please sign in to comment.