refactor: don't allow user to assign running profile to group

This commit is contained in:
zhom
2025-08-07 01:16:47 +04:00
parent 63e125738d
commit 34a9418474
+3 -1
View File
@@ -779,7 +779,9 @@ export function ProfilesDataTable({
onAssignProfilesToGroup([profile.name]);
}
}}
disabled={!browserState.isClient || isBrowserUpdating}
disabled={
!browserState.isClient || isBrowserUpdating || isRunning
}
>
Assign to Group
</DropdownMenuItem>