🎨 Run updated prettier
This commit is contained in:
@ -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)"
|
||||
|
Reference in New Issue
Block a user