diff --git a/web-ui/app/operator/agents/_components/PluginsDnd.tsx b/web-ui/app/operator/agents/_components/PluginsDnd.tsx index bdccd9b4..65c387db 100644 --- a/web-ui/app/operator/agents/_components/PluginsDnd.tsx +++ b/web-ui/app/operator/agents/_components/PluginsDnd.tsx @@ -19,7 +19,7 @@ import { verticalListSortingStrategy, } from '@dnd-kit/sortable'; import { CSS } from '@dnd-kit/utilities'; -import { GripVertical } from 'lucide-react'; +import { Globe, GripVertical } from 'lucide-react'; import { useMemo, useState } from 'react'; import { useTranslations } from 'next-intl'; @@ -286,24 +286,26 @@ export function PluginsDnd(props: PluginsDndProps): React.ReactElement { return (
- {activeEntry.id}
-
+ +
{props.emptyLabel}
) : ( @@ -575,26 +606,32 @@ function DraggablePluginTile(props: { return (
- {entry.id}
-
+ {entry.id}
+
{(entry.memory_reads.length > 0 ||
- entry.memory_writes.length > 0) && (
- - {t('networkLabel')} {entry.network_outbound.join(', ')} -
- )}