-
Notifications
You must be signed in to change notification settings - Fork 48k
Compyle/cmgyzio2e00v3qyi267tuqvg3 4c6d4b9 #20979
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Compyle/cmgyzio2e00v3qyi267tuqvg3 4c6d4b9 #20979
Conversation
Compyle Bot seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
Hey @shad03152015, Thank you for your contribution. We appreciate the time and effort you’ve taken to submit this pull request. Before we can proceed, please ensure the following: Regarding new nodes: If your node integrates with an AI service that you own or represent, please email nodes@n8n.io and we will be happy to discuss the best approach. About review timelines: Thank you again for contributing to n8n. |
0e3ebca
to
15a7c0f
Compare
@@ -0,0 +1 @@ | |||
import type{INodeType,INodeTypeDescription}from'n8n-workflow';import{resourceOperations,resourceFields}from'./descriptions';import{BASE_URL}from'./helpers/constants';export class AwsAugmentedAI implements INodeType{description:INodeTypeDescription={displayName:'AWS AugmentedAI',name:'awsAugmentedAI',icon:'file:augmentedai.svg',group:['transform'],version:1,subtitle:'={{["operation"]+": "+["resource"]}}',description:'Interact with AWS AugmentedAI',defaults:{name:'AWS AugmentedAI'},inputs:['main'],outputs:['main'],credentials:[{name:'aws',required:true}],requestDefaults:{baseURL:BASE_URL,headers:{'Content-Type':'application/json'}},properties:[{displayName:'Resource',name:'resource',type:'options',noDataExpression:true,options:[{name:'Resource',value:'resource'}],default:'resource'},...resourceOperations,...resourceFields]};} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: AWS Node Subtitles Lack Parameter Accessors
The subtitle
expression in many AWS nodes is missing the $parameter
accessor. This causes the node subtitle to display literal strings like 'operation' and 'resource' instead of the actual selected values, leading to incorrect UI display.
Additional Locations (4)
packages/nodes-base/nodes/Aws/EnhancedFanOut/AwsEnhancedFanOut.node.ts#L1
packages/nodes-base/nodes/Aws/EventBus/AwsEventBus.node.ts#L1
packages/nodes-base/nodes/Aws/MarketplaceCatalog/AwsMarketplaceCatalog.node.ts#L1
packages/nodes-base/nodes/Aws/ApplicationDiscovery/AwsApplicationDiscovery.node.ts#L1
Summary
Related Linear tickets, Github issues, and Community forum posts
Review / Merge checklist
release/backport
(if the PR is an urgent fix that needs to be backported)