Skip to content

Commit

Permalink
Added ES Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rushirajnenuji committed Jul 17, 2024
1 parent 7ee43b8 commit a559a33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/views/DataItemView.js
Original file line number Diff line number Diff line change
Expand Up @@ -601,12 +601,12 @@ define([
this.$el.attr("data-packageId", this.dataPackageId);
}

//Download button
// Download button
this.downloadButtonView = new DownloadButtonView({ model: this.model, view: "actionsView" });
this.downloadButtonView.render();

let id = this.model.get("id");
let infoLink =
const id = this.model.get("id");
const infoLink =
MetacatUI.root +
"/view/" +
encodeURIComponent(this.currentlyViewing) +
Expand Down

0 comments on commit a559a33

Please sign in to comment.