diff --git a/framework/src/Volo.Abp.BlazoriseUI/Components/UiMessageAlert.razor b/framework/src/Volo.Abp.BlazoriseUI/Components/UiMessageAlert.razor index 511343d3cd..82fc576b7e 100644 --- a/framework/src/Volo.Abp.BlazoriseUI/Components/UiMessageAlert.razor +++ b/framework/src/Volo.Abp.BlazoriseUI/Components/UiMessageAlert.razor @@ -1,49 +1,52 @@  - - - @Title - - + @if (!Title.IsNullOrEmpty()) + { + + + @Title + + + } @if ( ShowMessageIcon ) { - - + + } - + @Message - + - - @if ( IsConfirmation ) - { - - - } - else - { - - } + + @if ( IsConfirmation ) + { + + + } + else + { + + } \ No newline at end of file