Skip to content

Commit

Permalink
Fix version information field
Browse files Browse the repository at this point in the history
  • Loading branch information
undera committed Oct 26, 2022
1 parent 3eae013 commit e75e653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/dashboard/static/datadog.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
DD_RUM.onReady(function() {
const xhr = new XMLHttpRequest();
xhr.onload = function() {
const version = JSON.parse(xhr.responseText).VerCur;
const version = JSON.parse(xhr.responseText).CurVer;
if (xhr.readyState === XMLHttpRequest.DONE && version!=="dev") {
DD_RUM.init({
clientToken: 'pub16d64cd1c00cf073ce85af914333bf72',
Expand Down

0 comments on commit e75e653

Please sign in to comment.