From 4313deb078eb971439dbcb151ef1372af771ca4c Mon Sep 17 00:00:00 2001 From: HugoCasa Date: Wed, 25 Jun 2025 19:05:08 +0200 Subject: [PATCH] fix: missing static_asset_config from api call (#6058) --- frontend/src/lib/components/triggers/http/utils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/lib/components/triggers/http/utils.ts b/frontend/src/lib/components/triggers/http/utils.ts index ca779dec78..0b18186c9f 100644 --- a/frontend/src/lib/components/triggers/http/utils.ts +++ b/frontend/src/lib/components/triggers/http/utils.ts @@ -51,6 +51,7 @@ export async function saveHttpRouteFromCfg( route_path: isAdmin || !edit ? routeCfg.route_path : undefined, http_method: routeCfg.http_method, is_static_website: routeCfg.is_static_website, + static_asset_config: routeCfg.static_asset_config, workspaced_route: routeCfg.workspaced_route, authentication_resource_path: routeCfg.authentication_resource_path, wrap_body: routeCfg.wrap_body,