Skip to content

Commit

Permalink
Update dependency jspdf-autotable to v3.8.4 (#762)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Pascal Berger <[email protected]>
  • Loading branch information
renovate[bot] and pascalberger authored Oct 15, 2024
1 parent 797c943 commit 0074873
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.7.1.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.2/jspdf.umd.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/3.8.3/jspdf.plugin.autotable.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/3.8.4/jspdf.plugin.autotable.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/23.1.11/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/23.1.11/css/dx.light.css" />
<script type="text/javascript" src="https://cdn3.devexpress.com/jslib/23.1.11/js/dx.all.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Issues.Reporting.Generic/HtmlDxDataGridOption.cs
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ public enum HtmlDxDataGridOption
/// <summary>
/// Version of <see href="https://github.com/simonbengtsson/jsPDF-AutoTable">jsPDF-AutoTable plugin</see> which should be used.
/// This version needs to match the version required by the selected <see cref="DevExtremeVersion"/>.
/// Default value is <c>3.8.3</c>.
/// Default value is <c>3.8.4</c>.
/// </summary>
JsPdfAutotableVersion,
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
string jsPdfVersion = ViewBagHelper.ValueOrDefault(ViewBag.JsPdfVersion, "2.5.2").Trim();
string jsPdfAutoTableLocation = ViewBagHelper.ValueOrDefault(ViewBag.FileSaverJsLocation, "https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/").Trim();
jsPdfAutoTableLocation = jsPdfAutoTableLocation.WithEnding("/");
string jsPdfAutoTableVersion = ViewBagHelper.ValueOrDefault(ViewBag.JsPdfAutoTableVersion, "3.8.3").Trim();
string jsPdfAutoTableVersion = ViewBagHelper.ValueOrDefault(ViewBag.JsPdfAutoTableVersion, "3.8.4").Trim();
string devExtremeLocation = ViewBagHelper.ValueOrDefault(ViewBag.DevExtremeLocation, "https://cdn3.devexpress.com/jslib/").Trim();
devExtremeLocation = devExtremeLocation.WithEnding("/");
string devExtremeVersion = ViewBagHelper.ValueOrDefault(ViewBag.DevExtremeVersion, "23.1.11").Trim();
Expand Down

0 comments on commit 0074873

Please sign in to comment.