diff --git a/imports/helpers/utils.js b/imports/helpers/utils.js index b6fcea88f..40f146ba9 100644 --- a/imports/helpers/utils.js +++ b/imports/helpers/utils.js @@ -5,7 +5,7 @@ export class Util { for (const source of sources) { for (const key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { - this.target[key] = source[key]; + target[key] = source[key]; // Corrected line } } }