fix(Google Slides Node): Change wording to make the replace easier to use (no-changelog) (#13522)

This commit is contained in:
Jon 2025-02-26 15:25:14 +00:00 committed by GitHub
parent 5334661b76
commit acdd2da492
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.', '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', name: 'pageObjectIds',
type: 'multiOptions', type: 'multiOptions',
default: [], default: [],
@ -284,22 +284,22 @@ export class GoogleSlides implements INodeType {
loadOptionsDependsOn: ['presentationId'], loadOptionsDependsOn: ['presentationId'],
}, },
description: description:
'If non-empty, limits the matches to page elements only on the given pages. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.', 'If non-empty, limits the matches to slide elements only on the given slides. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
}, },
{ {
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', name: 'replaceText',
type: 'string', type: 'string',
default: '', default: '',
description: 'The text that will replace the matched text', 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',
},
], ],
}, },
], ],