fixed bug
This commit is contained in:
@@ -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();
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user