From 9cfe396d0fef4e80dfa9e3a50327a2a1221c1e2a Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 29 Sep 2025 00:39:40 -0700 Subject: [PATCH] add GRID_PAGINATED to ListDisplayType --- src/shared/types/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/types/types.ts b/src/shared/types/types.ts index 9494c3469..7c2a0eec0 100644 --- a/src/shared/types/types.ts +++ b/src/shared/types/types.ts @@ -16,6 +16,7 @@ import { ServerFeatures } from '/@/shared/types/features-types'; export enum ListDisplayType { CARD = 'card', GRID = 'poster', + GRID_PAGINATED = 'posterPaginated', LIST = 'list', TABLE = 'table', TABLE_PAGINATED = 'paginatedTable',