diff --git a/ayanova/src/api/open-object-handler.js b/ayanova/src/api/open-object-handler.js index 5f6a86f2..512a259a 100644 --- a/ayanova/src/api/open-object-handler.js +++ b/ayanova/src/api/open-object-handler.js @@ -36,8 +36,10 @@ export default { wireUpEventHandlers(vm) { var self = this; //expects extra data (tid) to be { type: [AYATYPE], id: [RECORDID] } - window.$gz.eventBus.$on("openobject", function handleOpenObjectClick(tid) { - self.handleAppClick(vm, tid); + window.$gz.eventBus.$on("openobject", function handleOpenObjectClickHandler( + tid + ) { + self.handleOpenObjectClick(vm, tid); }); } //new functions above here