From 125f31a5afb2f50d3c55ada333237443b8dbe34f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C3=87etin?= <92744169+mehmetcetin01140@users.noreply.github.com> Date: Thu, 14 Mar 2024 18:09:17 +0300 Subject: [PATCH] Fixed #14983 - PrimeNG docs for p-table - Template example missing crucial property first --- src/app/showcase/doc/table/paginatorprogrammaticdoc.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/showcase/doc/table/paginatorprogrammaticdoc.ts b/src/app/showcase/doc/table/paginatorprogrammaticdoc.ts index b974c7d8104..92166fb83da 100644 --- a/src/app/showcase/doc/table/paginatorprogrammaticdoc.ts +++ b/src/app/showcase/doc/table/paginatorprogrammaticdoc.ts @@ -101,6 +101,7 @@ export class PaginatorProgrammaticDoc { [value]="customers" [paginator]="true" [rows]="5" + [first]="first" [showCurrentPageReport]="true" [tableStyle]="{ 'min-width': '50rem' }" currentPageReportTemplate="Showing {first} to {last} of {totalRecords} entries" @@ -141,6 +142,7 @@ export class PaginatorProgrammaticDoc { [value]="customers" [paginator]="true" [rows]="5" + [first]="first" [showCurrentPageReport]="true" [tableStyle]="{ 'min-width': '50rem' }" currentPageReportTemplate="Showing {first} to {last} of {totalRecords} entries"