Skip to content

Commit

Permalink
wrong var name
Browse files Browse the repository at this point in the history
  • Loading branch information
adkinsrs committed Sep 11, 2024
1 parent 2b2d6c3 commit a0f9f11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/js/classes/analysis.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class Analysis {
const option = document.createElement("option");
option.dataset.analysisId = analysis.id;
option.dataset.analysisType = analysis.type;
option.dataset.analysisSessionId = analysis.user_session_id;
option.dataset.analysisSessionId = analysis.session_id;
option.dataset.datasetId = analysis.dataset_id;
option.textContent = analysis.label || "Unlabeled"
// ? Using standard HTML, cannot add icons to options, so making icons by vetting status is not possible
Expand Down Expand Up @@ -417,7 +417,7 @@ class Analysis {
datasetIsRaw: data.dataset_is_raw,
label: data.label,
type: data.type,
analysisSessionId: data.user_session_id || CURRENT_USER.session_id,
analysisSessionId: data.session_id || CURRENT_USER.session_id,
groupLabels: data.group_labels,
genesOfInterest: data.genesOfInterest
});
Expand Down

0 comments on commit a0f9f11

Please sign in to comment.