Browse Source
Update MaxLength parameters in DynamicMaxLength for CreatePageViewModel
pull/18828/head
Enis Necipoglu
2 years ago
No known key found for this signature in database
GPG Key ID: 1EC55E13241E1680
1 changed files with
3 additions and
3 deletions
-
modules/cms-kit/src/Volo.CmsKit.Admin.Web/Pages/CmsKit/Pages/Create.cshtml.cs
|
|
|
@ -44,15 +44,15 @@ public class CreateModel : CmsKitAdminPageModel |
|
|
|
public string Slug { get; set; } |
|
|
|
|
|
|
|
[HiddenInput] |
|
|
|
[DynamicMaxLength(typeof(PageConsts), nameof(PageConsts.MaxSlugLength))] |
|
|
|
[DynamicMaxLength(typeof(PageConsts), nameof(PageConsts.MaxContentLength))] |
|
|
|
public string Content { get; set; } |
|
|
|
|
|
|
|
[TextArea(Rows = 6)] |
|
|
|
[DynamicMaxLength(typeof(PageConsts), nameof(PageConsts.MaxSlugLength))] |
|
|
|
[DynamicMaxLength(typeof(PageConsts), nameof(PageConsts.MaxScriptLength))] |
|
|
|
public string Script { get; set; } |
|
|
|
|
|
|
|
[TextArea(Rows = 6)] |
|
|
|
[DynamicMaxLength(typeof(PageConsts), nameof(PageConsts.MaxSlugLength))] |
|
|
|
[DynamicMaxLength(typeof(PageConsts), nameof(PageConsts.MaxStyleLength))] |
|
|
|
public string Style { get; set; } |
|
|
|
} |
|
|
|
} |
|
|
|
|