Skip to content
Snippets Groups Projects
Commit 079f08e0 authored by D4rkHeart's avatar D4rkHeart
Browse files

[Feat] Separation of major and the birth date columns

- To ensure correct, non-interdependent sorting
parent 97bb6811
No related branches found
No related tags found
1 merge request!20Sorting by birth date not working
......@@ -57,6 +57,8 @@
<td>{{ props.item.applicant_mail }}</td>
<td>
{{ props.item.applicant_birthdate }},
</td>
<td>
<span
v-if="props.item.applicant_has_majority"
>&#10004;</span>
......@@ -140,7 +142,8 @@ export default {
{ text: 'Maturité', value: 'applicant_maturity' },
{ text: 'Adresse', value: 'applicant_npa' },
{ text: 'Email', value: 'applicant_mail' },
{ text: 'Date naissance, majeur', value: 'applicant_birthdate' },
{ text: 'Date naissance', value: 'applicant_birthdate' },
{ text: 'Majeur', value: 'applicant_has_majority' },
{ text: 'Nationalité', value: 'applicant_nationality' },
{ text: 'Origine', value: 'applicant_origin' },
{ text: 'Langues', value: 'applicant_languages', sortable: false },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment