Skip to content

Commit bf36045

Browse files
committed
Align with REST API definitions
1 parent 9d0dfdb commit bf36045

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/core-data/src/entities.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ export const rootEntitiesConfig = [
159159
baseURLParams: { context: 'edit' },
160160
plural: 'menus',
161161
label: __( 'Menu' ),
162+
supportsPagination: true,
162163
},
163164
{
164165
name: 'menuItem',
@@ -168,6 +169,7 @@ export const rootEntitiesConfig = [
168169
plural: 'menuItems',
169170
label: __( 'Menu Item' ),
170171
rawAttributes: [ 'title' ],
172+
supportsPagination: true,
171173
},
172174
{
173175
name: 'menuLocation',
@@ -209,7 +211,6 @@ export const rootEntitiesConfig = [
209211
baseURLParams: { context: 'edit' },
210212
plural: 'plugins',
211213
key: 'plugin',
212-
supportsPagination: true,
213214
},
214215
{
215216
label: __( 'Status' ),
@@ -396,6 +397,7 @@ async function loadTaxonomyEntities() {
396397
name,
397398
label: taxonomy.name,
398399
getTitle: ( record ) => record?.name,
400+
supportsPagination: true,
399401
};
400402
} );
401403
}

0 commit comments

Comments
 (0)