We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent e93b74f commit fe91e7eCopy full SHA for fe91e7e
CHANGELOG.md
@@ -1,6 +1,10 @@
1
# Changelog
2
3
4
+## [5.1.0] - 2023-04-10
5
+### Changed
6
+- Updated to Angular 15
7
+
8
## [5.0.0] - 2023-03-29
9
### Changed
10
- Updated to Angular 13
projects/plotly/src/lib/plotly-via-cdn.module.ts
@@ -33,7 +33,7 @@ export class PlotlyViaCDNModule {
33
PlotlyViaCDNModule.plotlyVersion = version;
34
}
35
36
- public static setPlotlyBundle(bundle: PlotlyBundleName): void {
+ public static setPlotlyBundle(bundle: PlotlyBundleName | null): void {
37
const isOk = bundle === null || PlotlyViaCDNModule.plotlyBundleNames.indexOf(bundle) >= 0;
38
if (!isOk) {
39
const names = PlotlyViaCDNModule.plotlyBundleNames.map(n => `"${n}"`).join(', ');
0 commit comments