Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Blazor-ApexCharts/Internal/JSLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static class JSLoader
/// <param name="path"></param>
public static async Task<IJSObjectReference> LoadAsync(IJSRuntime jsRuntime, string path = null)
{
var javascriptPath = "./_content/Blazor-ApexCharts/js/blazor-apexcharts.js?ver=6.0.2";
var javascriptPath = "./_content/Blazor-ApexCharts/js/blazor-apexcharts.js?ver=6.1.0";
if (!string.IsNullOrWhiteSpace(path)) { javascriptPath = path; }

// load Module ftom ES6 script
Expand Down
9 changes: 4 additions & 5 deletions src/Blazor-ApexCharts/wwwroot/js/apexcharts.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Blazor-ApexCharts/wwwroot/js/blazor-apexcharts.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ApexCharts from './apexcharts.esm.js?ver=6.0.0.0'
import ApexCharts from './apexcharts.esm.js?ver=6.1.0.0'

// export function for Blazor to point to the window.blazor_apexchart. To be compatible with the most JS Interop calls the window will be return.
export function get_apexcharts() {
Expand Down