Skip to content

Commit 69e1dd1

Browse files
committed
Merge pull request umbraco#612 from gildebrand/patch-3
Fix for macrocontainer making it possible to edit
2 parents 95f68b8 + 11b53a5 commit 69e1dd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Umbraco.Web.UI.Client/src/views/propertyeditors/macrocontainer/macrocontainer.controller.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ angular.module('umbraco')
4141

4242
if(index !== null && $scope.renderModel[index]) {
4343
var macro = $scope.renderModel[index];
44-
dialogData[macroData] = macro;
44+
dialogData["macroData"] = macro;
4545
}
4646

4747
dialogService.macroPicker({
@@ -100,4 +100,4 @@ angular.module('umbraco')
100100
return str.replace(rgxtrim, '');
101101
}
102102

103-
});
103+
});

0 commit comments

Comments
 (0)