From 67c7c1674f7ca712635306b4db392ee5f0a0a56f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Thu, 11 Jun 2020 20:31:18 +0200 Subject: [PATCH] appended this. since the method is a non-static class method. --- .../src/common/services/blockeditor.service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/services/blockeditor.service.js b/src/Umbraco.Web.UI.Client/src/common/services/blockeditor.service.js index bc36859df5..cfd70d48d6 100644 --- a/src/Umbraco.Web.UI.Client/src/common/services/blockeditor.service.js +++ b/src/Umbraco.Web.UI.Client/src/common/services/blockeditor.service.js @@ -300,7 +300,7 @@ * @return {Array} array of strings representing alias. */ getAvailableAliasesForBlockContent: function() { - return this.blockConfigurations.map(blockConfiguration => getScaffoldFor(blockConfiguration.contentTypeKey).contentTypeKey); + return this.blockConfigurations.map(blockConfiguration => this.getScaffoldFor(blockConfiguration.contentTypeKey).contentTypeKey); }, getAvailableBlocksForBlockPicker: function() {