From 4007fc682b21ad9b3e11f29519e8ea70f46d5599 Mon Sep 17 00:00:00 2001 From: Alasdair Smith Date: Tue, 19 Sep 2017 15:55:00 +0100 Subject: [PATCH] Send JSON in autocompile setting event payload --- .../web/public/coffee/ide/pdf/controllers/PdfController.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/public/coffee/ide/pdf/controllers/PdfController.coffee b/services/web/public/coffee/ide/pdf/controllers/PdfController.coffee index 68a6649ef7..ce3c8cbce1 100644 --- a/services/web/public/coffee/ide/pdf/controllers/PdfController.coffee +++ b/services/web/public/coffee/ide/pdf/controllers/PdfController.coffee @@ -107,7 +107,7 @@ define [ if newValue? and oldValue != newValue localStorage("autocompile_enabled:#{$scope.project_id}", newValue) toggleAutoCompile(newValue) - event_tracking.sendMB "autocompile-setting-changed", newValue + event_tracking.sendMB "autocompile-setting-changed", { value: newValue } if window.user?.betaProgram and $scope.autocompile_enabled toggleAutoCompile(true)