Skip to content

Commit

Permalink
Changed: Some formular TODO's
Browse files Browse the repository at this point in the history
  • Loading branch information
djuarezgf committed Dec 23, 2024
1 parent cc76b17 commit b1d850e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ProjectView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -729,13 +729,13 @@ export default defineComponent({
message: "Please select one of the predefined configurations for the project. If none of the options meet your requirements, choose 'CUSTOM' to create a custom configuration."
});
count ++;
} else if (this.draftDialogCurrentStep === 2) { // Query
} else if (this.draftDialogCurrentStep === 2 && !this.project?.query) { // Query
extendedExplanations.set(count.toString(), {
number: count,
message: "Please set the query and specify the query format if they have not been previously configured in the Federated Explorer."
});
count ++;
} else if (this.draftDialogCurrentStep === 3) { // Output
} else if (this.draftDialogCurrentStep === 3 && (!this.project?.outputFormat || !this.project?.templateId) ) { // Output
extendedExplanations.set(count.toString(), {
number: count,
message: "Please select the output format and the template ID for the Teiler Exporter. For advanced configuration of the template, please add the necessary environment variables."
Expand Down

0 comments on commit b1d850e

Please sign in to comment.