Broke caching of exam json
This commit is contained in:
@@ -134,7 +134,7 @@
|
||||
const bannerResp = await fetch('/assets/banner.json?t=${Date.now()}');
|
||||
this.banner = await bannerResp.json();
|
||||
|
||||
const examResp = await fetch('/assets/exams.json');
|
||||
const examResp = await fetch('/assets/exams.json?t=${Date.now()}');
|
||||
this.exams = await examResp.json();
|
||||
},
|
||||
toggleDarkMode() {
|
||||
|
Reference in New Issue
Block a user