diff --git a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/components/AIAgentConnectorImport.jsx b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/components/AIAgentConnectorImport.jsx index e8e1612d28..8093f061a8 100644 --- a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/components/AIAgentConnectorImport.jsx +++ b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/components/AIAgentConnectorImport.jsx @@ -21,9 +21,6 @@ const AIAgentConnectorImport = ({ fields.reduce((acc, field) => ({ ...acc, [field.name]: '' }), {}) ); - const goToDocs = () => { - window.open(docsUrl); - }; const validateForm = () => { for (const field of fields) { @@ -79,6 +76,10 @@ const AIAgentConnectorImport = ({ return fields.every(field => formData[field.name]?.length > 0); }; + const goToDocs = () => { + window.open(docsUrl); + }; + const updateField = (fieldName, value) => { setFormData(prev => ({ ...prev, [fieldName]: value })); }; diff --git a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/components/NewConnection.jsx b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/components/NewConnection.jsx index 5f6e0a8dc2..7e6235f6bc 100644 --- a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/components/NewConnection.jsx +++ b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/components/NewConnection.jsx @@ -49,6 +49,7 @@ function NewConnection() { setTasksCompleted(2) } + const openDocs = (docsUrl) => { if(docsUrl && docsUrl.length > 0){ window.open(docsUrl) diff --git a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/transform.js b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/transform.js index 9a902d3816..898287a99d 100644 --- a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/transform.js +++ b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/quick_start/transform.js @@ -357,21 +357,12 @@ const customAIObj = { const awsBedrockObj = { icon: '/public/aws_bedrock.svg', label: "AWS Bedrock", - text: "Import AWS Bedrock AI agents seamlessly into AKTO.", - docsUrl: 'https://docs.akto.io/ai-agent-security', + text: "Import your AWS Bedrock AI agents, seamlessly into AKTO.", + docsUrl: 'https://docs.akto.io/aws-bedrock-agents', key: "AWS_BEDROCK", - component : } @@ -1528,7 +1519,8 @@ const quickStartFunc = { ] const aiAgentConnectors = [ - awsBedrockObj, azureAIFoundryObj, databricksObj, googleVertexAIObj, ibmWatsonxObj, customAgentObj, agenticShieldObj + awsBedrockObj, azureAIFoundryObj, databricksObj, googleVertexAIObj, ibmWatsonxObj, customAgentObj, agenticShieldObj, + n8nImportObj, langchainImportObj, copilotStudioImportObj ] // MCP Scan @@ -1617,7 +1609,8 @@ const quickStartFunc = { if(isGenAISecurityCategory() || isAgenticSecurityCategory()){ connectorsList = connectorsList.concat([ geminiObj, openAIObj, claudeObj, deepseekObj, llamaObj, grokObj, customAIObj, - awsBedrockObj, azureAIFoundryObj, databricksObj, googleVertexAIObj, ibmWatsonxObj, customAgentObj, agenticShieldObj + awsBedrockObj, azureAIFoundryObj, databricksObj, googleVertexAIObj, ibmWatsonxObj, customAgentObj, agenticShieldObj, + n8nImportObj, langchainImportObj, copilotStudioImportObj ]) }