mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
fix(Convert to/from binary data Node): Rename 'Move Binary Data' to 'Convert to/from binary data' (#7318)
Github issue / Community forum post (link here to close automatically):
This commit is contained in:
@@ -187,10 +187,10 @@ describe('Webhook Trigger node', async () => {
|
||||
|
||||
ndv.getters.backToCanvas().click();
|
||||
|
||||
workflowPage.actions.addNodeToCanvas('Move Binary Data');
|
||||
workflowPage.actions.addNodeToCanvas('Convert to/from binary data');
|
||||
workflowPage.actions.zoomToFit();
|
||||
|
||||
workflowPage.actions.openNode('Move Binary Data');
|
||||
workflowPage.actions.openNode('Convert to/from binary data');
|
||||
cy.getByTestId('parameter-input-mode').click();
|
||||
getVisibleSelect().find('.option-headline').contains('JSON to Binary').click();
|
||||
ndv.getters.backToCanvas().click();
|
||||
|
||||
@@ -12,5 +12,6 @@
|
||||
},
|
||||
"subcategories": {
|
||||
"Core Nodes": ["Files"]
|
||||
}
|
||||
},
|
||||
"alias": ["Move Binary Data"]
|
||||
}
|
||||
|
||||
@@ -49,7 +49,7 @@ encodeDecodeOptions.sort((a, b) => {
|
||||
|
||||
export class MoveBinaryData implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Move Binary Data',
|
||||
displayName: 'Convert to/from binary data',
|
||||
name: 'moveBinaryData',
|
||||
icon: 'fa:exchange-alt',
|
||||
group: ['transform'],
|
||||
@@ -57,7 +57,7 @@ export class MoveBinaryData implements INodeType {
|
||||
subtitle: '={{$parameter["mode"]==="binaryToJson" ? "Binary to JSON" : "JSON to Binary"}}',
|
||||
description: 'Move data between binary and JSON properties',
|
||||
defaults: {
|
||||
name: 'Move Binary Data',
|
||||
name: 'Convert to/from binary data',
|
||||
color: '#7722CC',
|
||||
},
|
||||
inputs: ['main'],
|
||||
|
||||
Reference in New Issue
Block a user