diff --git a/ui/src/app/workflows/components/workflows-list/workflows-list.tsx b/ui/src/app/workflows/components/workflows-list/workflows-list.tsx index e2479d60b044..536ee0522aa1 100644 --- a/ui/src/app/workflows/components/workflows-list/workflows-list.tsx +++ b/ui/src/app/workflows/components/workflows-list/workflows-list.tsx @@ -72,7 +72,11 @@ export class WorkflowsList extends BasePage, State> { if (localStorage.getItem(LOCAL_STORAGE_KEY) !== null) { return JSON.parse(localStorage.getItem(LOCAL_STORAGE_KEY)) as WorkflowListRenderOptions; } - return {} as WorkflowListRenderOptions; + return { + paginationLimit: 0, + selectedPhases: [], + selectedLabels: [] + } as WorkflowListRenderOptions; } private subscription: Subscription;