From 8933fae461c7c2a65f626c965b7240ffe08c47ad Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 25 Jun 2020 15:58:40 -0400 Subject: [PATCH] fix(calendar(js)): improve debugging in Component factory --- UI/WebServerResources/js/Scheduler/Component.service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/WebServerResources/js/Scheduler/Component.service.js b/UI/WebServerResources/js/Scheduler/Component.service.js index 836feb048..76e311a64 100644 --- a/UI/WebServerResources/js/Scheduler/Component.service.js +++ b/UI/WebServerResources/js/Scheduler/Component.service.js @@ -441,7 +441,7 @@ }, components); } - Component.$log.debug('list of ' + type + ' ready (' + components.length + ')'); + Component.$log.debug('list of ' + type + ' ready (' + _.size(components) + ')'); // Save the list of components to the object model Component['$' + type] = components;