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 @@ ...@@ -45,7 +45,7 @@
/> />
</template> </template>
<template #person="{ item }"> <template #person.fullName="{ item }">
<person-chip :person="item.person" /> <person-chip :person="item.person" />
</template> </template>
...@@ -106,7 +106,7 @@ export default { ...@@ -106,7 +106,7 @@ export default {
return [ return [
{ {
text: this.$t("person.name"), text: this.$t("person.name"),
value: "person", value: "person.fullName",
}, },
...this.absenceReasons.map((reason, index) => { ...this.absenceReasons.map((reason, index) => {
return { return {
...@@ -129,6 +129,7 @@ export default { ...@@ -129,6 +129,7 @@ export default {
}, },
{ {
value: "actions", 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