From c951ceb44b2ca503afe4de06402cdf9b605004e5 Mon Sep 17 00:00:00 2001 From: Michael Chus Date: Sun, 24 May 2026 19:27:06 +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=82=D0=B5=D0=BF=D0=B5=D1=80?= =?UTF-8?q?=D1=8C=20=D0=B2=D0=BA=D0=BB=D1=8E=D1=87=D0=B5=D0=BD=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=B2=20=D0=BE=D0=B1=D0=BE=D0=B8=D1=85=20=D0=B4=D0=B8?= =?UTF-8?q?=D0=B0=D0=BB=D0=BE=D0=B3=D0=B0=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- 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 6cdb86c..bc7265a 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 = false; + document.getElementById('variant-action-copy').checked = true; 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 = false; + document.getElementById('config-action-copy').checked = true; populateProjectAutocomplete(); const currentProject = projectsCatalog.find(p => p.uuid === (currentProjectUUID || projectUUID)); if (currentProject) {