mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
👕 Fix lint issue
This commit is contained in:
parent
4b30d1c5e0
commit
155622ede9
|
@ -509,7 +509,7 @@ export class GoogleSlides implements INodeType {
|
||||||
const limit = this.getNodeParameter('limit', i) as number;
|
const limit = this.getNodeParameter('limit', i) as number;
|
||||||
responseData = responseData.slice(0, limit);
|
responseData = responseData.slice(0, limit);
|
||||||
}
|
}
|
||||||
returnData.push(...this.helpers.returnJsonArray(responseData))
|
returnData.push(...this.helpers.returnJsonArray(responseData));
|
||||||
|
|
||||||
} else if (operation === 'replaceText') {
|
} else if (operation === 'replaceText') {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue