From ea4414d11c1447be26f1a42825de3cbf78a39591 Mon Sep 17 00:00:00 2001 From: robertSt7 <104770750+robertSt7@users.noreply.github.com> Date: Thu, 24 Aug 2023 10:38:08 +0200 Subject: [PATCH] Update public/js/document/printpage.js --- public/js/document/printpage.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/js/document/printpage.js b/public/js/document/printpage.js index cffde77..2cbe361 100644 --- a/public/js/document/printpage.js +++ b/public/js/document/printpage.js @@ -75,7 +75,8 @@ pimcore.document.printpage = Class.create(pimcore.document.printabstract, { items.push(this.workflows.getLayout()); } - return pimcore.helpers.getTabBar({items: items, defaults: {autoScroll:true}}); + this.tabbar = pimcore.helpers.getTabBar({items: items, defaults: {autoScroll:true}}); + return this.tabbar; } });