Skip to content

Commit 411b9f9

Browse files
committed
Fix clientside module test & update changelog
1 parent 35db0c4 commit 411b9f9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1313
- [#2734](https://github.com/plotly/dash/pull/2734) Configure CI for Python 3.10 [#1863](https://github.com/plotly/dash/issues/1863)
1414
- [#2735](https://github.com/plotly/dash/pull/2735) Configure CI for Python 3.8 and 3.12, drop support for Python 3.6 and Python 3.7 [#2736](https://github.com/plotly/dash/issues/2736)
1515

16+
## Added
17+
- [#2730](https://github.com/plotly/dash/pull/2721) Load script files with `.mjs` ending as js modules
18+
1619
## [2.15.0] - 2024-01-31
1720

1821
## Added
@@ -30,7 +33,6 @@ This project adheres to [Semantic Versioning](https://semver.org/).
3033
## Changed
3134
- [#2652](https://github.com/plotly/dash/pull/2652) dcc.Clipboard supports htm_content and triggers a copy to clipboard when n_clicks are changed
3235
- [#2721](https://github.com/plotly/dash/pull/2721) Remove ansi2html, fixes [#2613](https://github.com/plotly/dash/issues/2713)
33-
- [#2730](https://github.com/plotly/dash/pull/2721) Load script files with `.mjs` ending as js modules
3436

3537
## [2.14.2] - 2023-11-27
3638

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {display} from "./clientsideModule.mjs";
22

3-
window.dash_clientside.clientside_module = Object.assign({}, window.dash_clientside, {
3+
window.dash_clientside.clientside_module = Object.assign({}, window.dash_clientside.clientside_module, {
44
display
55
});

0 commit comments

Comments
 (0)