From 38eb5ce54f6fd65cc6827eba55b508468348e3a9 Mon Sep 17 00:00:00 2001 From: Jens Scheffler <95105677+jscheffl@users.noreply.github.com> Date: Mon, 23 Sep 2024 22:59:59 +0200 Subject: [PATCH] Fix broken main: generated JS types (#42422) --- airflow/ui/openapi-gen/requests/types.gen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/ui/openapi-gen/requests/types.gen.ts b/airflow/ui/openapi-gen/requests/types.gen.ts index 80e90078150ea..cb98e2b769ad2 100644 --- a/airflow/ui/openapi-gen/requests/types.gen.ts +++ b/airflow/ui/openapi-gen/requests/types.gen.ts @@ -76,7 +76,7 @@ export type GetDagsPublicDagsGetData = { onlyActive?: boolean; orderBy?: string; paused?: boolean | null; - tags?: Array | null; + tags?: Array; }; export type GetDagsPublicDagsGetResponse = DAGCollectionResponse;