updates app.js

This commit is contained in:
baiobelfer 2024-10-16 11:29:29 +02:00
parent 534ec00990
commit 510628b1f6
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ async function loadClasses() {
// Iterowanie po wszystkich klasach i wczytywanie plików z danymi uczniów // Iterowanie po wszystkich klasach i wczytywanie plików z danymi uczniów
for (const classInfo of classes) { for (const classInfo of classes) {
const studentsFilePath = classInfo.file_path; const studentsFilePath = '/data/'+ classInfo.file_path;
const studentsData = await fetchJSONFile(studentsFilePath); const studentsData = await fetchJSONFile(studentsFilePath);
if (studentsData) { if (studentsData) {