From c4539fdcde91c60ec6a02af3b08e6badf4ba5d38 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 19 Oct 2025 19:31:31 +0200 Subject: [PATCH] fix order --- web/src/views/repo/RepoManualPipeline.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/web/src/views/repo/RepoManualPipeline.vue b/web/src/views/repo/RepoManualPipeline.vue index 4261be0fb..a600dac35 100644 --- a/web/src/views/repo/RepoManualPipeline.vue +++ b/web/src/views/repo/RepoManualPipeline.vue @@ -164,6 +164,11 @@ const payload = ref<{ branch: string; variables: Record }>({ const isVariablesValid = ref(true); +const parameters = ref([]); +const paramValues = ref>({}); +const paramTrimEnabled = ref>({}); +const passwordVisibility = ref>({}); + const isFormValid = computed(() => { return payload.value.branch !== '' && isVariablesValid.value; }); @@ -202,10 +207,6 @@ const pipelineOptions = computed(() => { }); const loading = ref(true); -const parameters = ref([]); -const paramValues = ref>({}); -const paramTrimEnabled = ref>({}); -const passwordVisibility = ref>({}); function getOptionsFromDefaultValue(defaultValue: string, addEmptyOption = false) { const options = defaultValue