Skip to content

Commit

Permalink
Fix the File Manager component
Browse files Browse the repository at this point in the history
  • Loading branch information
gdlcf88 committed Dec 8, 2023
1 parent f0abb95 commit 0e3d698
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>5.0.0-preview.1</Version>
<Version>5.0.0-preview.2</Version>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>EasyAbp Team</Authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@
<abp-card-title>@L["File"]: @Model.ParentFileName</abp-card-title>
</abp-column>
<abp-column size-md="_6" class="text-end">
@if (canUploadFile)
@if (canCreateDirectory)
{
<abp-button class="create-dir-btn"
text="@L["CreateDirectory"].Value"
icon="plus"
button-type="Secondary"/>
}
@if (canCreateDirectory)
@if (canUploadFile)
{
<abp-button class="upload-file-btn"
text="@L["UploadFile"].Value"
Expand Down

0 comments on commit 0e3d698

Please sign in to comment.