Skip to content

Commit 282f169

Browse files
committed
Fix
1 parent 27e6551 commit 282f169

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

inst/htmlwidgets/rhtmlPictographs.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inst/htmlwidgets/rhtmlPictographs.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

theSrc/scripts/GraphicCell.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,10 @@ class GraphicCell extends BaseCell {
562562
})
563563
}
564564

565-
const imageCompletePromise = Promise.all(baseImageRenderPromises).all(variableImageRenderPromises).catch(imageErrorHandler)
565+
const imageCompletePromise = Promise.all(baseImageRenderPromises)
566+
.catch(imageErrorHandler)
567+
.then(() => Promise.all(variableImageRenderPromises))
568+
.catch(imageErrorHandler)
566569

567570
return imageCompletePromise.then(() => {
568571
if (this.config.tooltip) {

0 commit comments

Comments
 (0)