Skip to content

Dash does not work without explicitly loading {dashHtmlComponents} #260

Description

@daattali

It seems that loading {dashHtmlComponents} is a requirement for a dash app to work, and that namespacing it doesn't work.

The below app works:

library(dash)
library(dashHtmlComponents)
app <- Dash$new()
app$layout(htmlDiv("test"))
app$run_server()

But the following doesn't render and results in javascript errors:

library(dash)
app <- Dash$new()
app$layout(dashHtmlComponents::htmlDiv("test"))
app$run_server()

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions