Deprecate step size and node color (#2586)

* 🔥 Deprecate numberStepSize

* 🔥 Deprecate color in non-FA nodes

*  Minor node name fixes

* 📦 Update package-lock.json

*  Restore Merge node color

* 👕 Fix lint
This commit is contained in:
Iván Ovejero
2021-12-23 13:30:35 +01:00
committed by GitHub
parent 0ce26d48e0
commit 2b74b6238e
302 changed files with 167 additions and 446 deletions

View File

@@ -47,7 +47,6 @@ export class SendGrid implements INodeType {
description: 'Consume SendGrid API',
defaults: {
name: 'SendGrid',
color: '#1A82E2',
},
inputs: ['main'],
outputs: ['main'],
@@ -268,7 +267,7 @@ export class SendGrid implements INodeType {
} catch (error) {
if (this.continueOnFail()) {
returnData.push({ error: error.message });
} else {
} else {
throw error;
}
}