Fix blueprints not applying

Fixes #1795
This commit is contained in:
Owen
2025-11-02 14:56:19 -08:00
parent 7477713eef
commit ca7f557a3c

View File

@@ -34,11 +34,7 @@ export async function applyNewtDockerBlueprint(
return;
}
if (isEmptyObject(blueprint["proxy-resources"])) {
return;
}
if (isEmptyObject(blueprint["client-resources"])) {
if (isEmptyObject(blueprint["proxy-resources"]) && isEmptyObject(blueprint["client-resources"])) {
return;
}