From 5be7ed7d584d9a1f435e2f8eff6e1ec937c96d8a Mon Sep 17 00:00:00 2001 From: Shannon Date: Wed, 30 Oct 2013 13:28:41 +1100 Subject: [PATCH] Fixes: U4-3277 Macro insert in rte is not pre-populating selected macros --- .../src/views/common/dialogs/insertmacro.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/views/common/dialogs/insertmacro.controller.js b/src/Umbraco.Web.UI.Client/src/views/common/dialogs/insertmacro.controller.js index 26f6c5376a..767cc9bc8c 100644 --- a/src/Umbraco.Web.UI.Client/src/views/common/dialogs/insertmacro.controller.js +++ b/src/Umbraco.Web.UI.Client/src/views/common/dialogs/insertmacro.controller.js @@ -109,7 +109,7 @@ function InsertMacroController($scope, entityResource, macroResource, umbPropEdi }); if (found) { //select the macro and go to next screen - $scope.selectedMacro = found.id; + $scope.selectedMacro = found; editParams(); return; }