Mkranj
Mkranj
If you're loading libraries like so: `library(shinydashboard) ` `library(shinydashboardPlus)` Try doing it like so: `library(shinydashboardPlus) ` `library(shinydashboard)` Maybe NOT overwriting the older versions will help? It did for me, I...
Hi, do you still experience these problems? We've also experienced them. Have you found any tips for dealing with memory issues in long running apps?
If the snippet throws an error, I've wrapped the dashboardPage in a tabPanel: ``` ui
I've read through [this similar issue](https://github.com/tidyverse/lubridate/issues/1041) and can confirm I tried removing then installing lubridate on R 4.3.2 and the error still persists.
This has been fixed in the [latest version of the cachem package](https://github.com/r-lib/cachem/releases/tag/v1.1.0). Could this dependency be updated in Shiny?
Hi, I'm dealing with a similar issue. Basically, when you export multiple reactives, it's pretty problematic that a single req(F) stops the whole export. One value could be expected to...
This is fixed with the v0.8.7 version of the package :) Thank you!
Also, even `suppressWarnings()` or `suppressMessages()` doesn't work to remove the console output.
Can you provide a full app example? I can't seem to reproduce this. Here is an example shiny app: ``` library(shiny) library(shiny.i18n) i18n
Hi, I hope my 2 cents as a user is welcome here. I develop R applications professionally, mostly with Shiny. We use Plotly in certain dashboards and the most crucial...