From 7eb8838df5fd7d9cf5469e1f8fe0d29b92862997 Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Thu, 4 Jul 2024 18:46:17 +0100 Subject: [PATCH] fix action > description (#36) --- nodes/HttpBin/HttpVerbDescription.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodes/HttpBin/HttpVerbDescription.ts b/nodes/HttpBin/HttpVerbDescription.ts index 34a9864..1a9c431 100644 --- a/nodes/HttpBin/HttpVerbDescription.ts +++ b/nodes/HttpBin/HttpVerbDescription.ts @@ -17,7 +17,7 @@ export const httpVerbOperations: INodeProperties[] = [ { name: 'GET', value: 'get', - action: 'Perform a GET request', + description: 'Perform a GET request', routing: { request: { method: 'GET', @@ -28,7 +28,7 @@ export const httpVerbOperations: INodeProperties[] = [ { name: 'DELETE', value: 'delete', - action: 'Perform a DELETE request', + description: 'Perform a DELETE request', routing: { request: { method: 'DELETE',