Skip to content
Snippets Groups Projects
Commit 21d84b5e authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Only hide the rotation button in production

parent 9952b148
No related branches found
No related tags found
No related merge requests found
Pipeline #11943 passed with warnings
...@@ -492,7 +492,7 @@ export class PdfPreview extends ScopedElementsMixin(VPULitElement) { ...@@ -492,7 +492,7 @@ export class PdfPreview extends ScopedElementsMixin(VPULitElement) {
} }
render() { render() {
const isRotationHidden = buildinfo.env === 'production' || buildinfo.env === 'demo'; const isRotationHidden = (buildinfo.env === 'production');
return html` return html`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment