Fixed worship edit functionality

This commit is contained in:
Torsten Schulz
2024-09-06 12:35:54 +02:00
parent 78555bb66a
commit a869f2d16a
2 changed files with 15 additions and 4 deletions

View File

@@ -94,7 +94,7 @@ export default {
async fetchWorships() {
try {
const response = await axios.get('/worships');
this.worships = response.data.reverse();
this.worships = response.data;
} catch (error) {
console.error('Fehler beim Abrufen der Gottesdienste:', error);
}