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 BackOffice.Services.AppVersion
@using Tizzani.MudBlazor.HtmlEditor
@inject ISnackbar Snackbar @inject ISnackbar Snackbar
<MudDialog> <MudDialog>
@@ -47,11 +48,11 @@
Lines="2" Lines="2"
HelperText="پیامی که به کاربر نمایش داده می‌شود" /> HelperText="پیامی که به کاربر نمایش داده می‌شود" />
<MudTextField @bind-Value="Model.ReleaseNotes" <MudText Typo="Typo.subtitle2" Class="mt-2">یادداشت‌های انتشار (HTML)</MudText>
Label="یادداشت‌های انتشار" <MudHtmlEditor @bind-Html="Model.ReleaseNotes"
Variant="Variant.Outlined" Placeholder="توضیحات تغییرات این نسخه..."
Lines="4" MinHeight="150px">
HelperText="توضیحات تغییرات این نسخه" /> </MudHtmlEditor>
<MudDivider Class="my-2" /> <MudDivider Class="my-2" />