diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-07-16 01:30:08 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-07-16 01:30:08 -0400 |
| commit | 1abb8a91b8b25432fb1e8ee34cc34b94bfbb3113 (patch) | |
| tree | 2cdedc9c39f31f5020d64e6aba27750364991982 /src/components | |
| parent | fcfe7b9c5e388a199f902c9d971ea5fd1da145bb (diff) | |
add todos
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Sidebar.svelte | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/components/Sidebar.svelte b/src/components/Sidebar.svelte index b5b33c9..723e073 100644 --- a/src/components/Sidebar.svelte +++ b/src/components/Sidebar.svelte @@ -9,12 +9,12 @@ let sections = [ { name: "File Uploads", component: FileUploads }, - { name: "Peer Teachers", component: null }, + { name: "Peer Teachers", component: null }, // TODO { name: "Assign Labs", component: AssignLabs }, - { name: "Labs", component: null }, - { name: "Active Peer Teachers", component: null }, - { name: "Stats", component: null }, - { name: "TAMU Html Output", component: null }, + { name: "Labs", component: null }, // TODO + { name: "Active Peer Teachers", component: null }, // TODO + { name: "Stats", component: null }, // TODO + { name: "TAMU Html Output", component: null }, // TODO ]; // Set initial page to Assign Labs while I work on it @@ -22,8 +22,8 @@ onMount(async () => { // load database on mount for testing purposes - console.log("reading local database") - parseDatabaseLocal(local_db) + console.log("reading local database"); + parseDatabaseLocal(local_db); }); function chooseSection(sec) { |
