From 66dc5f2111b1ea60f562c91b33c6033253c3bd64 Mon Sep 17 00:00:00 2001 From: Gros Frumos Date: Tue, 17 Mar 2026 18:41:21 +0200 Subject: [PATCH] kin: auto-commit after pipeline --- web/frontend/src/views/ProjectView.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/web/frontend/src/views/ProjectView.vue b/web/frontend/src/views/ProjectView.vue index 654ee9c..01f5f0f 100644 --- a/web/frontend/src/views/ProjectView.vue +++ b/web/frontend/src/views/ProjectView.vue @@ -419,11 +419,11 @@ async function addLink() { await api.createProjectLink({ from_project: props.id, to_project: linkForm.value.to_project, - link_type: linkForm.value.link_type, + type: linkForm.value.type, description: linkForm.value.description || undefined, }) showAddLink.value = false - linkForm.value = { to_project: '', link_type: 'depends_on', description: '' } + linkForm.value = { to_project: '', type: 'depends_on', description: '' } await loadLinks() } catch (e: any) { linkFormError.value = e.message @@ -1368,7 +1368,7 @@ async function addDecision() { {{ link.from_project }} -> {{ link.to_project }} - {{ link.link_type }} + {{ link.type }} {{ link.description }}