Skip to content

Commit 712b3a6

Browse files
committed
fix(task-orchestration): show orchestration tab by default
1 parent b231913 commit 712b3a6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/unit/config-tabs-ui.test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ test('config template keeps expected config tabs in top and side navigation', ()
7575
assert.match(html, /v-if="taskOrchestrationTabEnabled" class="side-section" role="navigation" :aria-label="t\('side\.orchestration'\)"/);
7676
assert.match(html, /v-if="taskOrchestrationTabEnabled"[\s\S]*id="panel-orchestration"/);
7777
assert.match(html, /taskOrchestrationTabEnabled && mainTab === 'orchestration'/);
78-
assert.match(bundledScript, /taskOrchestrationTabEnabled:\s*false/);
78+
assert.match(bundledScript, /taskOrchestrationTabEnabled:\s*true/);
7979
assert.match(bundledScript, /codexmateTaskOrchestrationTabEnabled/);
8080
assert.match(bundledScript, /taskOrchestration/);
8181
const webUiRedirectBlock = bundledScript.match(/pathname === '\/web-ui'[\s\S]*?window\.location\.replace\(url\.toString\(\)\);/)?.[0] || '';

web-ui/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ document.addEventListener('DOMContentLoaded', () => {
451451
opencodeMaxTokens: '',
452452
opencodeReasoningEffort: '',
453453
forceCompactLayout: false,
454-
taskOrchestrationTabEnabled: false,
454+
taskOrchestrationTabEnabled: true,
455455
taskOrchestration: {
456456
loading: false,
457457
planning: false,

0 commit comments

Comments
 (0)