From 6146f6aec706bdda8d27ab4854c4f39d5672d3dc Mon Sep 17 00:00:00 2001 From: Michael Chus Date: Wed, 3 Jun 2026 13:46:23 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=B3=D0=B0=D0=BB=D0=BE=D1=87=D0=BA?= =?UTF-8?q?=D0=B0=20"=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D1=82=D1=8C=20=D0=BA?= =?UTF-8?q?=D0=BE=D0=BF=D0=B8=D1=8E"=20=D1=81=D0=BD=D1=8F=D1=82=D0=B0=20?= =?UTF-8?q?=D0=BF=D0=BE=20=D1=83=D0=BC=D0=BE=D0=BB=D1=87=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D1=8E=20(=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=BC?= =?UTF-8?q?=D0=BD=D1=8B=D0=B9=20checked=20=D0=BD=D0=B5=20=D1=82=D1=80?= =?UTF-8?q?=D0=B8=D0=B3=D0=B3=D0=B5=D1=80=D0=B8=D0=BB=20change-=D0=BE?= =?UTF-8?q?=D0=B1=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D1=87=D0=B8=D0=BA=20=D0=B8?= =?UTF-8?q?=D0=BC=D0=B5=D0=BD=D0=B8)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 --- web/templates/project_detail.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/templates/project_detail.html b/web/templates/project_detail.html index bc7265a..6cdb86c 100644 --- a/web/templates/project_detail.html +++ b/web/templates/project_detail.html @@ -229,7 +229,7 @@ class="w-full px-3 py-2 border rounded focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
@@ -257,7 +257,7 @@ class="w-full px-3 py-2 border rounded focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
@@ -634,7 +634,7 @@ function openVariantActionModal() { document.getElementById('variant-action-current-code').value = currentCode; document.getElementById('variant-action-name').value = currentName; document.getElementById('variant-action-code').value = currentCode; - document.getElementById('variant-action-copy').checked = true; + document.getElementById('variant-action-copy').checked = false; document.getElementById('variant-action-modal').classList.remove('hidden'); document.getElementById('variant-action-modal').classList.add('flex'); const nameInput = document.getElementById('variant-action-name'); @@ -1105,7 +1105,7 @@ async function openConfigActionModal(uuid, currentName, currentProjectUUID) { document.getElementById('config-action-current-name').value = currentName; document.getElementById('config-action-current-project').value = currentProjectUUID || projectUUID; document.getElementById('config-action-name').value = currentName; - document.getElementById('config-action-copy').checked = true; + document.getElementById('config-action-copy').checked = false; populateProjectAutocomplete(); const currentProject = projectsCatalog.find(p => p.uuid === (currentProjectUUID || projectUUID)); if (currentProject) {