@lucashca/claudecontrol 0.3.23 → 0.3.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,7 +2,7 @@ import type { LucideIcon } from 'lucide-react';
|
|
|
2
2
|
import { Blocks, Code2, TestTube2, Cloud, Database, Layout, ChevronRight, Loader2, GitBranch, Square } from 'lucide-react';
|
|
3
3
|
import { useAtomValue } from 'jotai';
|
|
4
4
|
import { useState } from 'react';
|
|
5
|
-
import { agentsMapAtom
|
|
5
|
+
import { agentsMapAtom } from '@/atoms';
|
|
6
6
|
import { api } from '@/api';
|
|
7
7
|
import { Badge, Button, Tooltip } from '@/ui';
|
|
8
8
|
import { AGENT_LABELS, AGENT_DESCRIPTIONS } from '@/types';
|
|
@@ -165,10 +165,8 @@ export function ChatPanel({ agentId, compact }: { agentId: string; compact?: boo
|
|
|
165
165
|
|
|
166
166
|
function ActiveAgentsBar({ currentAgentId, workspaceId }: { currentAgentId: string; workspaceId: string }) {
|
|
167
167
|
const agentsMap = useAtomValue(agentsMapAtom);
|
|
168
|
-
const barTabIds = useAtomValue(barTabIdsAtom);
|
|
169
|
-
const tabSet = new Set(barTabIds);
|
|
170
168
|
const others = [...agentsMap.values()].filter(
|
|
171
|
-
a => a.workspaceId === workspaceId && a.id !== currentAgentId && !a.closed &&
|
|
169
|
+
a => a.workspaceId === workspaceId && a.id !== currentAgentId && !a.closed && a.status === 'working',
|
|
172
170
|
);
|
|
173
171
|
if (others.length === 0) return null;
|
|
174
172
|
|
package/package.json
CHANGED
package/version.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"0.3.
|
|
1
|
+
{"version":"0.3.24","build":"2026-04-03T23:07:39.778Z"}
|