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 { ...@@ -14,8 +14,8 @@ export default {
default: null, default: null,
required: false, required: false,
}, },
participation: { participations: {
type: Object, type: Array,
required: true, required: true,
}, },
}, },
...@@ -159,7 +159,7 @@ export default { ...@@ -159,7 +159,7 @@ export default {
{{ {{
$t("alsijil.personal_notes.confirm_delete_tardiness", { $t("alsijil.personal_notes.confirm_delete_tardiness", {
tardiness: previousValue, tardiness: previousValue,
name: participation.person.fullName, name: participations.map(p => p.person.firstName).join(", "),
}) })
}} }}
</template> </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