From 8097672917d337661be136a68df19e9383e0e64e Mon Sep 17 00:00:00 2001 From: Aleksey Razorvin <> Date: Sat, 21 Mar 2026 13:54:00 +0500 Subject: [PATCH] fix: show activate button in table row for current inactive version Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/pages/TestEdit/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/TestEdit/index.tsx b/frontend/src/pages/TestEdit/index.tsx index 9bca277..962e1af 100644 --- a/frontend/src/pages/TestEdit/index.tsx +++ b/frontend/src/pages/TestEdit/index.tsx @@ -235,7 +235,7 @@ export default function TestEdit() { Открыть )} - {record.id !== test.id && ( + {(record.id !== test.id || !record.is_active) && (