Long Text in Shiny Table

I am having problems with renderTable() and renderDataTable() functions in my Shiny app.

I query my data for a single row of information on a stored company then transpose/gather the data for a cleaner view in my app. While this works fine in Rstudio, for some reason, the longer text cell containing a description of the company does not show up in the deployed app. Not sure why the difference.

output$tblCompany <- renderTable({
selectCompany <- input$company
companyData <- Companies %>%
filter(Company_Name == selectCompany) %>%
select(Company = Company_Name, Country, Sector, Industry, Description, Website) %>%
gather(key = , value = )
companyData
})

Anyone have this or a similar problem? The rest of the data shows up fine, but the longer text description does not show up in the deployed app.

Shiny:

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