mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(Google Slides Node): Change wording to make the replace easier to use (no-changelog) (#13522)
This commit is contained in:
parent
5334661b76
commit
acdd2da492
|
@ -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',
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue