diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklist.block.component.js b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklist.block.component.js index ab2590e249..f30112568e 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklist.block.component.js +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklist.block.component.js @@ -3,16 +3,16 @@ /** * @ngdoc component - * @name umbraco.directives.directive:umbBlockListBlockContent + * @name umbraco.directives.directive:umbBlockListBlock * @description * The component for a style-inheriting block of the block list property editor. */ angular .module("umbraco") - .component("umbBlockListBlockContent", { + .component("umbBlockListBlock", { template: '
', - controller: BlockListBlockContentController, + controller: BlockListBlockController, controllerAs: "model", bindings: { view: "@", @@ -23,7 +23,7 @@ } ); - function BlockListBlockContentController($scope) { + function BlockListBlockController($scope) { var model = this; model.$onInit = function() { $scope.block = model.block; diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklist.component.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklist.component.html index ea3537b52a..5f2737d263 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklist.component.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklist.component.html @@ -20,10 +20,10 @@