I'm using Box's "ContentExplorer" and "Preview" with "logoUrl" set to "box". The logo appears in "ContentExplorer" but not in "Preview". Here's my setup:
【ContentExplorer】
const contentExplorer = new Box.ContentExplorer();
contentExplorer.show(folderID, this.access_token, {
container: '.boxExplorer',
logoUrl: 'box'
});
【Preview】
const preview = new Box.Preview();
preview.show(fileID, this.access_token, {
container: '#preview-container',
showAnnotations: false,
showDownload: true,
logoUrl: 'box'
});
CDN links used:
- "https://cdn01.boxcdn.net/platform/elements/16.0.0/en-US/explorer.js"
- "https://cdn01.boxcdn.net/platform/preview/2.81.0/en-US/preview.js"
Could you guide me to display the logo in "Preview"?
Thank you,


