diff --git a/packages/nodes-base/nodes/Google/Slides/GoogleSlides.node.ts b/packages/nodes-base/nodes/Google/Slides/GoogleSlides.node.ts index 4e58864900..f3111fac45 100644 --- a/packages/nodes-base/nodes/Google/Slides/GoogleSlides.node.ts +++ b/packages/nodes-base/nodes/Google/Slides/GoogleSlides.node.ts @@ -275,7 +275,7 @@ export class GoogleSlides implements INodeType { 'Whether the search should respect case. True : the search is case sensitive. False : the search is case insensitive.', }, { - displayName: 'Page Names or IDs', + displayName: 'Slide Names or IDs', name: 'pageObjectIds', type: 'multiOptions', default: [], @@ -284,22 +284,22 @@ export class GoogleSlides implements INodeType { loadOptionsDependsOn: ['presentationId'], }, description: - 'If non-empty, limits the matches to page elements only on the given pages. Choose from the list, or specify IDs using an expression.', + 'If non-empty, limits the matches to slide elements only on the given slides. Choose from the list, or specify IDs using an expression.', }, { - displayName: 'Replace Text', + displayName: 'Search For', + name: 'text', + type: 'string', + default: '', + description: 'The text to search for in the slide', + }, + { + displayName: 'Replace With', name: 'replaceText', type: 'string', default: '', description: 'The text that will replace the matched text', }, - { - displayName: 'Text', - name: 'text', - type: 'string', - default: '', - description: 'The text to search for in the shape or table', - }, ], }, ],