From 0032b3056a67bb6297d1926f1454c128f6405950 Mon Sep 17 00:00:00 2001 From: Gros Frumos Date: Mon, 16 Mar 2026 07:15:58 +0200 Subject: [PATCH] =?UTF-8?q?kin:=20KIN-065=20UI-=D1=82=D0=BE=D0=B3=D0=B3?= =?UTF-8?q?=D0=BB=20autocommit=5Fenabled=20=D0=BD=D0=B0=20=D1=81=D1=82?= =?UTF-8?q?=D1=80=D0=B0=D0=BD=D0=B8=D1=86=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B5?= =?UTF-8?q?=D0=BA=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/frontend/src/App.vue | 5 ++++- web/frontend/src/main.ts | 2 ++ web/frontend/src/views/TaskDetail.vue | 4 ++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/web/frontend/src/App.vue b/web/frontend/src/App.vue index 4ebce21..cf79de5 100644 --- a/web/frontend/src/App.vue +++ b/web/frontend/src/App.vue @@ -7,7 +7,10 @@ Kin - multi-agent orchestrator +
diff --git a/web/frontend/src/main.ts b/web/frontend/src/main.ts index 91cc08d..6d3e71a 100644 --- a/web/frontend/src/main.ts +++ b/web/frontend/src/main.ts @@ -5,6 +5,7 @@ import App from './App.vue' import Dashboard from './views/Dashboard.vue' import ProjectView from './views/ProjectView.vue' import TaskDetail from './views/TaskDetail.vue' +import SettingsView from './views/SettingsView.vue' const router = createRouter({ history: createWebHistory(), @@ -12,6 +13,7 @@ const router = createRouter({ { path: '/', component: Dashboard }, { path: '/project/:id', component: ProjectView, props: true }, { path: '/task/:id', component: TaskDetail, props: true }, + { path: '/settings', component: SettingsView }, ], }) diff --git a/web/frontend/src/views/TaskDetail.vue b/web/frontend/src/views/TaskDetail.vue index 21b4b6f..6204b2c 100644 --- a/web/frontend/src/views/TaskDetail.vue +++ b/web/frontend/src/views/TaskDetail.vue @@ -28,6 +28,10 @@ const resolvingAction = ref(false) const showReject = ref(false) const rejectReason = ref('') +// Revise modal +const showRevise = ref(false) +const reviseComment = ref('') + // Auto/Review mode (per-task, persisted in DB; falls back to localStorage per project) const autoMode = ref(false)