1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-08-16 16:40:30 +03:00

fix(Webhook Node): Binary property option name and description update (#10043)

This commit is contained in:
Michael Kret 2024-07-13 14:06:14 +03:00 committed by GitHub
parent 8cd93704be
commit 9302e33d55
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -237,7 +237,7 @@ export const optionsProperty: INodeProperties = {
'If the data gets received via "Form-Data Multipart" it will be the prefix and a number starting with 0 will be attached to it',
},
{
displayName: 'Binary Property',
displayName: 'Field Name for Binary Data',
name: 'binaryPropertyName',
type: 'string',
default: 'data',
@ -247,7 +247,7 @@ export const optionsProperty: INodeProperties = {
},
},
description:
'Name of the binary property to write the data of the received file to, only relevant if binary data is received',
'The name of the output field to put any binary file data in. Only relevant if binary data is received.',
},
{
displayName: 'Ignore Bots',