diff --git a/framework/src/Volo.Abp.BlazoriseUI/Components/AbpExtensibleDataGrid.razor b/framework/src/Volo.Abp.BlazoriseUI/Components/AbpExtensibleDataGrid.razor
index 0bc49f6b4f..8632412d94 100644
--- a/framework/src/Volo.Abp.BlazoriseUI/Components/AbpExtensibleDataGrid.razor
+++ b/framework/src/Volo.Abp.BlazoriseUI/Components/AbpExtensibleDataGrid.razor
@@ -67,7 +67,21 @@
var entity = context as IHasExtraProperties;
var propertyName = ExtensionPropertiesRegex.Match(column.Data).Groups[1].Value;
var propertyValue = entity.GetProperty(propertyName);
- @(propertyValue)
+ if (propertyValue.GetType() == typeof(bool))
+ {
+ if ((bool)propertyValue)
+ {
+
+ }
+ else
+ {
+
+ }
+ }
+ else
+ {
+ @(propertyValue)
+ }
}