From 7a22ea0ec8511a7c87a42b76f8400cd03d072a52 Mon Sep 17 00:00:00 2001 From: adkinsrs Date: Wed, 11 Sep 2024 16:01:20 -0400 Subject: [PATCH] I'm a big dummy --- www/js/sc_workbench.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/js/sc_workbench.js b/www/js/sc_workbench.js index d4c56398..617fbc06 100644 --- a/www/js/sc_workbench.js +++ b/www/js/sc_workbench.js @@ -89,7 +89,7 @@ const datasetTree = new DatasetTree({ document.querySelector(UI.analysisSelect).disabled = true; } - document.querySelector(UI.primaryFilterSection).classList.remove("is-hidden"); + document.querySelector(UI.primaryInitialInfoSection).classList.remove("is-hidden"); document.querySelector(UI.primaryInitialPlotContainer).classList.remove("is-hidden"); try { await getDatasetInfo(datasetId); @@ -178,7 +178,7 @@ const getDatasetInfo = async (datasetId) => { currentAnalysis.dataset = ds; - document.querySelector(UI.primaryInitialInfoSection).classList.remove("is-hidden"); + document.querySelector(UI.primaryFilterSection).classList.remove("is-hidden"); document.querySelector(UI.selectedDatasetShapeInitialElt).textContent = currentAnalysis.dataset.shape(); createToast("Dataset loaded", "is-success");