Skip to content

Commit

Permalink
[ALS-5208] Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcolon021 committed Dec 1, 2023
1 parent deec64b commit cf00b3d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
define(["jquery", "backbone", "handlebars", "text!studyAccess/studyAccess.hbs", "text!studyAccess/studies-data.json",
"common/transportErrors", "picSure/queryBuilder", "picSure/settings", "common/spinner",
"overrides/outputPanel", "picSure/search", "studyAccess/studyAccessUtility"],
"overrides/outputPanel", "picSure/search", "studyAccess/study-utility"],
function($, BB, HBS, studyAccessTemplate, studyAccessConfiguration,
transportErrors, queryBuilder, settings, spinner,
outputPanelOverrides, search, studyAccessUtility){
outputPanelOverrides, search, studyUtility){
var studyAccess = {
freezeMsg: "(Current TOPMed data is Freeze5b)",
};
Expand All @@ -24,7 +24,7 @@ define(["jquery", "backbone", "handlebars", "text!studyAccess/studyAccess.hbs",
let session = JSON.parse(sessionStorage.getItem("session"));
this.authorizedAccess = session.privileges && session.privileges.includes("FENCE_AUTHORIZED_ACCESS");

this.records = studyAccessUtility.groupRecordsByAccess();
this.records = studyUtility.groupRecordsByAccess();
},
events:{
"click .clickable-button": "buttonClickHandler"
Expand Down

0 comments on commit cf00b3d

Please sign in to comment.