From b1d850ead8ae8ec21f8e3633092dad66f21213dd Mon Sep 17 00:00:00 2001 From: djuarezgf Date: Mon, 23 Dec 2024 10:41:39 +0100 Subject: [PATCH] Changed: Some formular TODO's --- src/components/ProjectView.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ProjectView.vue b/src/components/ProjectView.vue index 1a106fd..87759f7 100644 --- a/src/components/ProjectView.vue +++ b/src/components/ProjectView.vue @@ -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."