diff --git a/templates/admin/dashboard.html b/templates/admin/dashboard.html index 9dfa1a5..71ee903 100644 --- a/templates/admin/dashboard.html +++ b/templates/admin/dashboard.html @@ -1171,7 +1171,7 @@ function displayAgents(agents) { ${agent.verification_status === 'needs_verification' ? ' Needs Verification' : ''} ${agent.verification_status === 'verified' ? ' Verified' : ''} - ${agent.agent_description || 'No description'} + ${agent.agent_description ? `
${agent.agent_description || 'No description'}
+${(agent.agent_purpose || 'No purpose listed').length > 100 ? (agent.agent_purpose || '').substring(0, 100) + '...' : (agent.agent_purpose || 'No purpose listed')}