Skip to content

Commit f732222

Browse files
authored
fix(bootstrap): Include all files (#1342)
1 parent 890eda9 commit f732222

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717

1818
### Bug fixes
1919

20+
* Fixed an issue that prevented Shiny from serving the `font.css` file referenced in Shiny's Bootstrap CSS file. (#1342)
21+
2022
### Other changes
2123

2224
* `Session` is now an abstract base class, and `AppSession` is a concrete subclass of it. Also, `ExpressMockSession` has been renamed `ExpressStubSession` and is a concrete subclass of `Session`. (#1331)

shiny/ui/_html_deps_external.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def bootstrap_deps(include_css: bool = True) -> list[HTMLDependency]:
5858
script={"src": "bootstrap.bundle.min.js"},
5959
stylesheet={"href": "bootstrap.min.css"} if include_css else None,
6060
meta={"name": "viewport", "content": "width=device-width, initial-scale=1"},
61+
all_files=True,
6162
)
6263
deps = [jquery_deps(), dep]
6364
return deps

0 commit comments

Comments
 (0)