ga defect

This commit is contained in:
Donielle Austin 2022-05-19 08:36:22 -04:00
parent e83710fb02
commit 4715698f8e

View file

@ -97,7 +97,7 @@ export default {
},
prependActionToMethod(object, method, actionToPrepend) {
let baseMethodName = method.name.startsWith('bound ') ? method.name.substring(6) : method.name ;
const baseMethodName = method.name.startsWith('bound ') ? method.name.substring(6) : method.name ;
const baseMethod = object[baseMethodName];
object[baseMethodName] = function () {
actionToPrepend.apply(this, arguments);