From 35c3804807053c09ed43341978abd01e75c27ced Mon Sep 17 00:00:00 2001 From: Marc Rufener Date: Mon, 12 Jun 2023 15:45:04 +0200 Subject: [PATCH] fix variable name error --- front/src/components/Affaires/NewAffaire/NewAffaire.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/components/Affaires/NewAffaire/NewAffaire.vue b/front/src/components/Affaires/NewAffaire/NewAffaire.vue index 2cbb8d5d..bb0fd1b9 100644 --- a/front/src/components/Affaires/NewAffaire/NewAffaire.vue +++ b/front/src/components/Affaires/NewAffaire/NewAffaire.vue @@ -850,7 +850,7 @@ export default { }, 200); } if (this.affaireTypeRequirements.section_facture && this.client_facture_id === null) { - this.form.client_facture_id = client_id; + this.client_facture_id = client_id; this.$refs.ref_client_facture.getClientById(client_id); } },