bugfixes + datecontrol + filter control

This commit is contained in:
Alphons
2023-12-02 18:52:29 +08:00
parent 4fe759b5bb
commit 29c2d7fead
3 changed files with 151 additions and 67 deletions
+6
View File
@@ -0,0 +1,6 @@
const GetPrefs = await fetch(`${location.origin}/seqta/student/load/prefs?`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ asArray: true, request: 'userPrefs' })
})
export const response = await GetPrefs.json()
+1
View File
@@ -0,0 +1 @@
export function onError (error) { console.log(`Error: ${error}`) }