diff --git a/app/views/play/menu/InventoryModal.coffee b/app/views/play/menu/InventoryModal.coffee index 3060a5bdf..359e54034 100644 --- a/app/views/play/menu/InventoryModal.coffee +++ b/app/views/play/menu/InventoryModal.coffee @@ -480,6 +480,7 @@ module.exports = class InventoryModal extends ModalView onClickPlayLevel: (e) -> return if @$el.find('#play-level-button').prop 'disabled' + levelSlug = @options.level.get('slug') @playSound 'menu-button-click' @showLoading() ua = navigator.userAgent.toLowerCase() @@ -488,7 +489,7 @@ module.exports = class InventoryModal extends ModalView hasGoneFullScreenOnce = true @updateConfig => @trigger? 'play-click' - window.tracker?.trackEvent 'Inventory Play', category: 'Play Level' + window.tracker?.trackEvent 'Inventory Play', category: 'Play Level', level: levelSlug updateConfig: (callback, skipSessionSave) -> sessionHeroConfig = @options.session.get('heroConfig') ? {}