diff --git a/api/src/Kurs.Platform.Application/ListForms/Administration/ListFormsAppService.cs b/api/src/Kurs.Platform.Application/ListForms/Administration/ListFormsAppService.cs index c8811f43..d3a49553 100644 --- a/api/src/Kurs.Platform.Application/ListForms/Administration/ListFormsAppService.cs +++ b/api/src/Kurs.Platform.Application/ListForms/Administration/ListFormsAppService.cs @@ -152,6 +152,7 @@ public class ListFormsAppService : CrudAppService< } else if (input.EditType == ListFormEditTabs.PagerForm) { + item.PageSize = input.PageSize; item.PagerOptionJson = JsonSerializer.Serialize(input.PagerOptionDto); } else if (input.EditType == ListFormEditTabs.StateForm) diff --git a/api/src/Kurs.Platform.DbMigrator/Seeds/LanguagesData.json b/api/src/Kurs.Platform.DbMigrator/Seeds/LanguagesData.json index f2bcae6b..70ba1621 100644 --- a/api/src/Kurs.Platform.DbMigrator/Seeds/LanguagesData.json +++ b/api/src/Kurs.Platform.DbMigrator/Seeds/LanguagesData.json @@ -5413,6 +5413,12 @@ "en": "Allowed Page Sizes", "tr": "İzin Verilen Sayfa Boyutları" }, + { + "resourceName": "Platform", + "key": "ListForms.ListFormEdit.PageSize", + "en": "Page Size", + "tr": "Sayfa Boyutu" + }, { "resourceName": "Platform", "key": "ListForms.ListFormEdit.PagingInfoText", diff --git a/ui/src/views/admin/listForm/edit/FormTabPager.tsx b/ui/src/views/admin/listForm/edit/FormTabPager.tsx index 40865d81..819a5f49 100644 --- a/ui/src/views/admin/listForm/edit/FormTabPager.tsx +++ b/ui/src/views/admin/listForm/edit/FormTabPager.tsx @@ -36,6 +36,21 @@ function FormTabPager(props: FormEditProps) { {({ touched, errors, isSubmitting, values }) => (