feat(AppVersionEditDialog): replace ReleaseNotes text field with HTML editor for enhanced formatting
Build and Deploy / build (push) Successful in 2m9s

This commit is contained in:
masoodafar-web
2025-12-27 05:08:14 +03:30
parent 98a4ba9e99
commit 6f5bfba0a5
@@ -1,4 +1,5 @@
@using BackOffice.Services.AppVersion
@using Tizzani.MudBlazor.HtmlEditor
@inject ISnackbar Snackbar
<MudDialog>
@@ -47,11 +48,11 @@
Lines="2"
HelperText="پیامی که به کاربر نمایش داده می‌شود" />
<MudTextField @bind-Value="Model.ReleaseNotes"
Label="یادداشت‌های انتشار"
Variant="Variant.Outlined"
Lines="4"
HelperText="توضیحات تغییرات این نسخه" />
<MudText Typo="Typo.subtitle2" Class="mt-2">یادداشت‌های انتشار (HTML)</MudText>
<MudHtmlEditor @bind-Html="Model.ReleaseNotes"
Placeholder="توضیحات تغییرات این نسخه..."
MinHeight="150px">
</MudHtmlEditor>
<MudDivider Class="my-2" />