From 89b5719e762f53bb0a9ea5b3d1d66ec08226fcc3 Mon Sep 17 00:00:00 2001 From: Ilkay Ilknur Date: Fri, 26 Mar 2021 11:46:57 +0300 Subject: [PATCH] set default value for the Visible property. --- .../src/Volo.Abp.BlazoriseUI/Components/EntityAction.razor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/Volo.Abp.BlazoriseUI/Components/EntityAction.razor.cs b/framework/src/Volo.Abp.BlazoriseUI/Components/EntityAction.razor.cs index 822cca49d3..a7cf7b8752 100644 --- a/framework/src/Volo.Abp.BlazoriseUI/Components/EntityAction.razor.cs +++ b/framework/src/Volo.Abp.BlazoriseUI/Components/EntityAction.razor.cs @@ -10,7 +10,7 @@ namespace Volo.Abp.BlazoriseUI.Components public partial class EntityAction : ComponentBase { [Parameter] - public bool Visible { get; set; } + public bool Visible { get; set; } = true; internal bool HasPermission { get; set; } = true;