From 92640ca6153a3d645e6ec274e7473a0c88c9192b Mon Sep 17 00:00:00 2001 From: dauglyon Date: Thu, 7 Mar 2019 11:02:23 -0500 Subject: [PATCH] fixed bug which disabled login button --- js/source/modules/wizard-datasets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/source/modules/wizard-datasets.js b/js/source/modules/wizard-datasets.js index 058c78e94..5718927dc 100644 --- a/js/source/modules/wizard-datasets.js +++ b/js/source/modules/wizard-datasets.js @@ -71,7 +71,7 @@ export function WizardDatasets(main_id,wizard){ resolve(datasets.getDatasets()); })).then(datasets_data=>{ if(datasets_data.error){ - main.selectAll("button").attr("disabled",true); + main.selectAll(".wizard-dataset-load, .wizard-dataset-create").attr("disabled",true); main.select(".wizard-dataset-select") .attr("disabled",true) .select("option[selected]") -- 2.11.4.GIT