diff --git a/docs/components_page/components/modal/fullscreen.R b/docs/components_page/components/modal/fullscreen.R index b678e9e94..80d7344d5 100644 --- a/docs/components_page/components/modal/fullscreen.R +++ b/docs/components_page/components/modal/fullscreen.R @@ -9,7 +9,8 @@ modal <- htmlDiv( dbcModalHeader(dbcModalTitle("Fullscreen modal")), dbcModalBody("Wow this thing takes up a lot of space...") ), - id = "modal-fs" + id = "modal-fs", + fullscreen=TRUE ) ) ) diff --git a/docs/components_page/components/modal/fullscreen.jl b/docs/components_page/components/modal/fullscreen.jl index b0c91935b..7cfac276d 100644 --- a/docs/components_page/components/modal/fullscreen.jl +++ b/docs/components_page/components/modal/fullscreen.jl @@ -8,6 +8,7 @@ modal = html_div([ dbc_modalbody("Wow this thing takes up a lot of space..."), ], id = "modal-fs", + fullscreen=true ), ]) diff --git a/docs/components_page/components/modal/fullscreen.py b/docs/components_page/components/modal/fullscreen.py index 2879bfca2..aaa66dfb1 100644 --- a/docs/components_page/components/modal/fullscreen.py +++ b/docs/components_page/components/modal/fullscreen.py @@ -11,6 +11,7 @@ dbc.ModalBody("Wow this thing takes up a lot of space..."), ], id="modal-fs", + fullscreen=True, ), ] ) diff --git a/docs/markdown_to_html.py b/docs/markdown_to_html.py index 03475745c..0aad29d16 100644 --- a/docs/markdown_to_html.py +++ b/docs/markdown_to_html.py @@ -29,7 +29,7 @@ """ # noqa TAB_TEMPLATE = """