mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
👕 Fix lint issue
This commit is contained in:
parent
047167f80b
commit
014972a0c0
|
@ -89,8 +89,8 @@ export default mixins(
|
|||
return null;
|
||||
},
|
||||
nodeTypeDescription (): string {
|
||||
if (this.nodeType.description) {
|
||||
return this.nodeType.description;
|
||||
if (this.nodeType!.description) {
|
||||
return this.nodeType!.description;
|
||||
} else {
|
||||
return 'No description found';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue