We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent5fe436d commitef5330bCopy full SHA for ef5330b
site/src/modules/resources/AgentRow.tsx
@@ -59,7 +59,7 @@ export const AgentRow: FC<AgentRowProps> = ({
59
onUpdateAgent,
60
initialMetadata,
61
})=>{
62
-const{ browser_only}=useFeatureVisibility();
+const{ browser_only, workspace_external_agent}=useFeatureVisibility();
63
constappSections=organizeAgentApps(agent.apps);
64
consthasAppsToDisplay=
65
!browser_only||appSections.some((it)=>it.apps.length>0);
@@ -296,7 +296,8 @@ export const AgentRow: FC<AgentRowProps> = ({
296
)}
297
298
{isExternalAgent&&
299
-(agent.status==="timeout"||agent.status==="connecting")&&(
+(agent.status==="timeout"||agent.status==="connecting")&&
300
+workspace_external_agent&&(
301
<AgentExternal
302
isExternalAgent={isExternalAgent}
303
agent={agent}