🎨 Run updated prettier

This commit is contained in:
2023-08-25 14:42:38 +02:00
parent 57807e7ce0
commit 70238b4151
19 changed files with 77 additions and 71 deletions

View File

@ -53,7 +53,7 @@ function exportTimetable(timetable) {
download(
JSON.stringify(timetable),
`timetable-${timetable.id}.json`,
"application/json"
"application/json",
);
}
@ -70,7 +70,7 @@ async function uploadTimetable(id) {
"Content-Type": "application/json",
},
body: JSON.stringify(timetableData),
}
},
);
if (response.status != 201) {
@ -103,7 +103,7 @@ async function uploadTimetable(id) {
@delete="
localTimetables.splice(
localTimetables.findIndex((e) => e.id == timetable.id),
1
1,
)
"
@export="exportTimetable(timetable)"