From 34a94184743c5fe2b41b95f3514d9105427f03a6 Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Thu, 7 Aug 2025 01:16:47 +0400 Subject: [PATCH] refactor: don't allow user to assign running profile to group --- src/components/profile-data-table.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/profile-data-table.tsx b/src/components/profile-data-table.tsx index 78c3b22..162e366 100644 --- a/src/components/profile-data-table.tsx +++ b/src/components/profile-data-table.tsx @@ -779,7 +779,9 @@ export function ProfilesDataTable({ onAssignProfilesToGroup([profile.name]); } }} - disabled={!browserState.isClient || isBrowserUpdating} + disabled={ + !browserState.isClient || isBrowserUpdating || isRunning + } > Assign to Group