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

Make participations an array

parent eccd44eb
No related branches found
No related tags found
1 merge request!407Resolve "Allow setting of tardiness for multiple students at once, also suggest time from lesson start"
......@@ -14,8 +14,8 @@ export default {
default: null,
required: false,
},
participation: {
type: Object,
participations: {
type: Array,
required: true,
},
},
......@@ -159,7 +159,7 @@ export default {
{{
$t("alsijil.personal_notes.confirm_delete_tardiness", {
tardiness: previousValue,
name: participation.person.fullName,
name: participations.map(p => p.person.firstName).join(", "),
})
}}
</template>
......
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