From 87a22bd42728c0d39bc4a2a4ec966f2316c89b61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Wed, 29 Apr 2020 16:28:39 +0200 Subject: [PATCH] pick tabs from variant content, not the node content model. --- .../components/editor/umbeditorcontentheader.directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/components/editor/umbeditorcontentheader.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/components/editor/umbeditorcontentheader.directive.js index 8fe1208dae..d09ba9696b 100644 --- a/src/Umbraco.Web.UI.Client/src/common/directives/components/editor/umbeditorcontentheader.directive.js +++ b/src/Umbraco.Web.UI.Client/src/common/directives/components/editor/umbeditorcontentheader.directive.js @@ -112,7 +112,7 @@ scope.editor.variantApps.forEach( (app) => { if (app.alias === "umbContent") { - app.anchors = scope.content.tabs; + app.anchors = scope.editor.content.tabs; } });