mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
fix(core): Allow "window" again in expressions (#3474)
This commit is contained in:
parent
73da4c3598
commit
ca92ff70d7
|
@ -156,10 +156,6 @@ export class Expression {
|
|||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
let returnValue;
|
||||
try {
|
||||
if (/([^a-zA-Z0-9"']window[^a-zA-Z0-9"'])/g.test(parameterValue)) {
|
||||
throw new Error(`window is not allowed`);
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call
|
||||
returnValue = tmpl.tmpl(parameterValue, data);
|
||||
} catch (error) {
|
||||
|
|
Loading…
Reference in a new issue