Skip to content

Commit

Permalink
Merge pull request #1337 from betagouv/1317-automatic-approval-select…
Browse files Browse the repository at this point in the history
…-option

Sélection automatique de l'option "Autoriser" dans l'onglet décision de l'instruction
  • Loading branch information
alemangui authored Dec 3, 2024
2 parents e787230 + b679d69 commit a2d4310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/InstructionPage/DecisionTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ import useToaster from "@/composables/use-toaster"
import { handleError } from "@/utils/error-handling"
const decisionCategory = ref(null)
watch(decisionCategory, () => (proposal.value = decisionCategory.value === "approve" ? "approve" : null))
watch(decisionCategory, () => (proposal.value = decisionCategory.value === "approve" ? "autorisation" : null))
const rules = computed(() => {
if (decisionCategory.value !== "modify") return {}
Expand Down

0 comments on commit a2d4310

Please sign in to comment.