Browse Source

set default value for the Visible property.

pull/8215/head
Ilkay Ilknur 5 years ago
parent
commit
89b5719e76
  1. 2
      framework/src/Volo.Abp.BlazoriseUI/Components/EntityAction.razor.cs

2
framework/src/Volo.Abp.BlazoriseUI/Components/EntityAction.razor.cs

@ -10,7 +10,7 @@ namespace Volo.Abp.BlazoriseUI.Components
public partial class EntityAction<TItem> : ComponentBase
{
[Parameter]
public bool Visible { get; set; }
public bool Visible { get; set; } = true;
internal bool HasPermission { get; set; } = true;

Loading…
Cancel
Save