diff --git a/platform/features/timeline/src/actions/UtilizationColumn.js b/platform/features/timeline/src/actions/UtilizationColumn.js index 9c9307271e..7a92ce668e 100644 --- a/platform/features/timeline/src/actions/UtilizationColumn.js +++ b/platform/features/timeline/src/actions/UtilizationColumn.js @@ -62,10 +62,10 @@ define([], function () { }, 0); } - return !domainObject.hasCapability('utilization') ? - "" : + return domainObject.hasCapability('utilization') ? domainObject.getCapability('utilization').internal() - .then(getUtilizationValue); + .then(getUtilizationValue) : + ""; }; return UtilizationColumn;