🐛 Default classList to an array

This commit is contained in:
2023-06-06 21:07:29 +02:00
parent 55517f6c1b
commit baa4c19f1a

View File

@ -46,7 +46,7 @@ export const changeDate = ref(new Date());
export const timetable = ref({ trusted: true }); export const timetable = ref({ trusted: true });
export const substitutions = ref({}); export const substitutions = ref({});
export const history = ref({}); export const history = ref({});
export const classList = ref({}); export const classList = ref([]);
/* API functions */ /* API functions */
// Set the `VITE_API_ENDPOINT` env variable when // Set the `VITE_API_ENDPOINT` env variable when