Add Learn English practice and question-type builder integrations with dynamic schema slots and HTML table editor. Remove API path labels from admin pages and standardize table page-size options to 5, 10, 30, 50, and 100. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
254 B
TypeScript
7 lines
254 B
TypeScript
/** Standard page-size choices for admin data tables. */
|
|
export const TABLE_PAGE_SIZE_OPTIONS = [5, 10, 30, 50, 100] as const
|
|
|
|
export type TablePageSize = (typeof TABLE_PAGE_SIZE_OPTIONS)[number]
|
|
|
|
export const DEFAULT_TABLE_PAGE_SIZE: TablePageSize = 10
|