Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Fix : problème d'affichage lorsque pas de client
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibClnt committed May 19, 2023
1 parent 65714fb commit fa40489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/projects/update/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ onMounted(async () => {
color.value = project.value?.color;
categories.value = project.value?.ticketStates;
stateLabels.value = categories.value?.map((category) => category.name) ?? [];
selectedClient.value = project.value?.client.name ?? "";
selectedClient.value = project.value?.client?.name ?? "";
members.value = project.value?.members;
loaded.value = true;
});
Expand Down

0 comments on commit fa40489

Please sign in to comment.