Skip to content
Snippets Groups Projects
Commit 5b1b694c authored by Julian's avatar Julian
Browse files

Fix ordering of columns

parent 6700e8d9
No related branches found
No related tags found
1 merge request!361Resolve "Add statistics page for absences"
......@@ -45,7 +45,7 @@
/>
</template>
<template #person="{ item }">
<template #person.fullName="{ item }">
<person-chip :person="item.person" />
</template>
......@@ -106,7 +106,7 @@ export default {
return [
{
text: this.$t("person.name"),
value: "person",
value: "person.fullName",
},
...this.absenceReasons.map((reason, index) => {
return {
......@@ -129,6 +129,7 @@ export default {
},
{
value: "actions",
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