Skip to content

Commit

Permalink
Disable wizard while sending to BCODB
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Sep 16, 2024
1 parent 36c9689 commit 4562a9b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ const exportPluginTitle = computed(() => {
return plugin ? plugin.title : "";
});
const isWizardBusy = computed(() => stsMonitor.isRunning.value || taskMonitor.isRunning.value);
const isBusy = ref(false);
const isWizardBusy = computed(() => stsMonitor.isRunning.value || taskMonitor.isRunning.value || isBusy.value);
const stepper = useStepper({
"select-format": {
Expand Down Expand Up @@ -237,7 +239,9 @@ async function exportInvocation() {
await exportToFileSource();
break;
case "bco-database":
isBusy.value = true;
await saveInvocationBCOToDatabase(props.invocationId, exportData.bcoDatabase);
isBusy.value = false;
break;
}
//@ts-ignore incorrect property does not exist on type error
Expand Down

0 comments on commit 4562a9b

Please sign in to comment.