Rstudio does not display plotly plots in Viewer

Hi,
After update of all my R packages, RStudio stopped displaying plotly plots in plot Viewer panel and inline in rmd. I can see the plot when I press 'Show in new window'. The inspect console output says:
"This browser lacks typed array (Uint8Array) support which is required by buffer v5.x. Use buffer v4.x if you require old browser support."
"TypeError: undefined is not a constructor (evaluating 'Object.setPrototypeOf(e.prototype,Uint8Array.prototype)')"
"ReferenceError: Can't find variable: Plotly"
RStudio Version 1.1.463. I cannot update RStudio to newer version since I need to use 32-bit R sometimes and it is no longer supported. What should I do?

Simple example:

library(plotly)

x <- c(1:100)
random_y <- rnorm(100, mean = 0)
data <- data.frame(x, random_y)

fig <- plot_ly(data, x = ~x, y = ~random_y, type = 'scatter', mode = 'lines')

fig

Thank you,
Egle

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.