From f1d1427313fe146258751b6576280dee9d2fc217 Mon Sep 17 00:00:00 2001 From: WilliamBZA Date: Thu, 28 May 2020 08:00:27 +0200 Subject: [PATCH] Remove arrow function in appctrl --- src/ServicePulse.Host/app/js/app.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ServicePulse.Host/app/js/app.controller.js b/src/ServicePulse.Host/app/js/app.controller.js index b19c6e09d..6d8cd9e82 100644 --- a/src/ServicePulse.Host/app/js/app.controller.js +++ b/src/ServicePulse.Host/app/js/app.controller.js @@ -159,7 +159,7 @@ notifier.subscribe($rootScope, function (event, data) { if (!$scope.SCMonitoringVersion && data.isMonitoringConnected) { - monitoringService.getServiceControlMonitoringVersion().then((data) => { + monitoringService.getServiceControlMonitoringVersion().then(function(data) { $scope.SCMonitoringVersion = data; }); }