diff --git a/.github/workflows/publish-studio-release.yaml b/.github/workflows/publish-studio-release.yaml index 965ce49a9..e1dc01843 100644 --- a/.github/workflows/publish-studio-release.yaml +++ b/.github/workflows/publish-studio-release.yaml @@ -22,7 +22,7 @@ on: required: true type: string thin_bundles: - description: Publish provider-local thin bundles (requires server opt-in) + description: Publish Volcengine thin bundles (BytePlus remains full-only) required: true default: false type: boolean @@ -246,9 +246,11 @@ jobs: matrix: include: - provider: volcengine + thin_bundles: ${{ inputs.thin_bundles }} url_secret: STUDIO_RELEASE_SERVER_URL key_secret: STUDIO_RELEASE_SERVER_API_KEY - provider: byteplus + thin_bundles: false url_secret: BYTEPLUS_STUDIO_RELEASE_SERVER_URL key_secret: BYTEPLUS_STUDIO_RELEASE_SERVER_API_KEY runs-on: ubuntu-latest @@ -259,7 +261,7 @@ jobs: RELEASE_SERVER_URL: ${{ secrets[matrix.url_secret] }} RELEASE_SERVER_API_KEY: ${{ secrets[matrix.key_secret] }} RELEASE_VERSION: ${{ needs.release-context.outputs.version }} - RELEASE_THIN_BUNDLES: ${{ inputs.thin_bundles }} + RELEASE_THIN_BUNDLES: ${{ matrix.thin_bundles }} steps: - name: Validate release server configuration diff --git a/frontend/src/ui/SandboxAgentWorkspace.css b/frontend/src/ui/SandboxAgentWorkspace.css index 46883a0ca..ca307d3fa 100644 --- a/frontend/src/ui/SandboxAgentWorkspace.css +++ b/frontend/src/ui/SandboxAgentWorkspace.css @@ -115,6 +115,10 @@ background: hsl(var(--panel)); } +.sandbox-agent-workspace-surface [hidden] { + display: none; +} + .sandbox-agent-workspace-state { display: grid; height: 100%; diff --git a/frontend/src/ui/SandboxAgentWorkspace.tsx b/frontend/src/ui/SandboxAgentWorkspace.tsx index 3c124b625..f26742be6 100644 --- a/frontend/src/ui/SandboxAgentWorkspace.tsx +++ b/frontend/src/ui/SandboxAgentWorkspace.tsx @@ -108,28 +108,29 @@ export function SandboxAgentWorkspace({
- {surface === "main" ? ( +