From d513f93c84ae985738e0f696fcb72fa1153046ef Mon Sep 17 00:00:00 2001 From: soryu Date: Tue, 28 Apr 2026 17:35:08 +0100 Subject: feat: document UI with contract blocks, expandable logs, and interaction controls (#97) * feat: soryu-co/soryu - makima: Rename tasks to contracts in directive API and types * feat: soryu-co/soryu - makima: Add contract interaction panel with comment and interrupt * feat: soryu-co/soryu - makima: Build expandable contract log feed in StepsDiagram * feat: soryu-co/soryu - makima: Rename tasks to contracts throughout document UI and add contract block support * feat: soryu-co/soryu - makima: Add comment and interrupt controls to expanded step log feed * feat: soryu-co/soryu - makima: Audit and fix Document UI feature flag visibility and missing implementations * feat: soryu-co/soryu - makima: Add expandable step rows with live log feed in StepsDiagram * WIP: heartbeat checkpoint * feat: soryu-co/soryu - makima: Integrate all document UI components and final polish --- frontend/src/stores/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend/src/stores/index.ts') diff --git a/frontend/src/stores/index.ts b/frontend/src/stores/index.ts index 5ee9b08..e247068 100644 --- a/frontend/src/stores/index.ts +++ b/frontend/src/stores/index.ts @@ -52,7 +52,7 @@ export const setDocumentUiEnabled = (enabled: boolean) => { documentUiEnabledStore.set(enabled) localStorage.setItem('document_ui_enabled', JSON.stringify(enabled)) // Persist to backend (fire-and-forget) - fetch('/api/v1/settings', { + fetch('/api/v1/user-settings', { method: 'PUT', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ key: 'document_ui_enabled', value: enabled }), -- cgit v1.2.3