Skip to content

Commit

Permalink
wip: generation happens at selected location
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronm-2112 committed Jan 17, 2025
1 parent dda1019 commit 0af5a69
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1930,6 +1930,11 @@ const savePageChanges = async (pageBeingLeftID) => {
if (pageBeingLeftID === "guided-manifest-file-generation-tab") {
}

if(pageBeingLeftID === "guided-ask-where-data-should-be-generated-tab") {
const datasetGenerationLocation = document.getElementById("guided-select-cloud-sync-folder-location-input").value;
window.sodaJSONObj["generate-dataset"]["path"] = datasetGenerationLocation;
}

if (pageBeingLeftID === "guided-create-submission-metadata-tab") {
const award = document.getElementById("guided-submission-sparc-award-manual").value;
const milestones = window.getTagsFromTagifyElement(window.guidedSubmissionTagsTagifyManual);
Expand Down Expand Up @@ -15776,7 +15781,7 @@ const guidedPennsieveDatasetUpload = async () => {
} else if (generatingOnCloud) {
console.log("Generating on cloud flow: ");

let testPath = window.path.join(window.homeDirectory, "SODA", "test");
let testPath = window.sodaJSONObj["generate-dataset"]["path"];

hideDatasetMetadataGenerationTableRows("pennsieve");

Expand Down

0 comments on commit 0af5a69

Please sign in to comment.