From 9302e33d558564bb5ba172eaeb8c300693b87286 Mon Sep 17 00:00:00 2001 From: Michael Kret <88898367+michael-radency@users.noreply.github.com> Date: Sat, 13 Jul 2024 14:06:14 +0300 Subject: [PATCH] fix(Webhook Node): Binary property option name and description update (#10043) --- packages/nodes-base/nodes/Webhook/description.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nodes-base/nodes/Webhook/description.ts b/packages/nodes-base/nodes/Webhook/description.ts index 7039ae8490..5cf2c4540b 100644 --- a/packages/nodes-base/nodes/Webhook/description.ts +++ b/packages/nodes-base/nodes/Webhook/description.ts @@ -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',