fixed bug

This commit is contained in:
Torsten Schulz
2024-09-24 14:27:07 +02:00
parent 0a8a1289bb
commit cf2d059635

View File

@@ -214,9 +214,6 @@ export default {
activity.name.toLowerCase().includes(input)
);
},
sortedMembers() {
return this.members.sort((a, b) => a.name.localeCompare(b.name));
},
},
methods: {
async init() {
@@ -642,9 +639,11 @@ export default {
pdf.addTrainingPlan(this.currentClubName, this.date.date, this.trainingStart, this.trainingEnd, this.trainingPlan);
pdf.save('trainingsplan.pdf');
},
sortedMembers() {
return this.members.sort((a, b) => a.name.localeCompare(b.name));
},
},
async mounted() {
await this.init();
}
};