From 0302c8b62abbeea112efd6db4900d6b1a21d7ba0 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Mon, 8 Aug 2022 23:00:27 -0400 Subject: [PATCH] CrmUi - Fix tabSetOptions variable Prior to #23749 this had been passing an object around as a string. During the refactoring it was treated as an object but still left as a string param. Now it's passed as an object. --- ang/crmUi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ang/crmUi.js b/ang/crmUi.js index 602e704845..1e59ef0dbd 100644 --- a/ang/crmUi.js +++ b/ang/crmUi.js @@ -762,7 +762,7 @@ restrict: 'EA', scope: { crmUiTabSet: '@', - tabSetOptions: '@' + tabSetOptions: '<' }, templateUrl: '~/crmUi/tabset.html', transclude: true, -- 2.25.1