Skip to content

Commit

Permalink
theme update support
Browse files Browse the repository at this point in the history
  • Loading branch information
dvesh3 committed Nov 22, 2023
1 parent 76d9b87 commit 58dd532
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/js/document/printcontainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pimcore.document.printcontainer = Class.create(pimcore.document.printabstract, {
items.push(this.workflows.getLayout());
}

this.tabbar = pimcore.helpers.getTabBar({items: items, defaults: {autoScroll:true}});
this.tabbar = pimcore.helpers.getTabBar({items: items, defaults: {autoScroll:true}, height: 46});
return this.tabbar;
}
});
Expand Down
2 changes: 1 addition & 1 deletion public/js/document/printpage.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pimcore.document.printpage = Class.create(pimcore.document.printabstract, {
items.push(this.workflows.getLayout());
}

this.tabbar = pimcore.helpers.getTabBar({items: items, defaults: {autoScroll:true}});
this.tabbar = pimcore.helpers.getTabBar({items: items, defaults: {autoScroll:true}, height: 46});
return this.tabbar;
}
});
Expand Down

0 comments on commit 58dd532

Please sign in to comment.