fix(editor): Prevent Code node linter from erroring on null parse (#6934)

https://linear.app/n8n/issue/PAY-717
This commit is contained in:
Iván Ovejero 2023-08-16 16:19:22 +02:00 committed by GitHub
parent d4fac0527b
commit 40d3a295d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -66,6 +66,8 @@ export const linterExtension = defineComponent({
}
}
if (ast === null) return [];
const lintings: Diagnostic[] = [];
/**