diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-07-31 13:55:16 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-07-31 13:55:16 -0500 |
| commit | 9c90f55f6dc248d9ae2090c8d7a3428660501362 (patch) | |
| tree | 9255f79ff135ca142c46a367e981cb070302fffc | |
| parent | bfee75a823c4bf2154f04de429d0e4324c4ab858 (diff) | |
Merge `course` and `section` columns into one
| -rw-r--r-- | src/components/Labs.svelte | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/Labs.svelte b/src/components/Labs.svelte index 51e0f8a..0cd685a 100644 --- a/src/components/Labs.svelte +++ b/src/components/Labs.svelte @@ -10,7 +10,6 @@ let headers = [ "", "Course", - "Sec", "Time", "Location", "Instructor", @@ -92,8 +91,7 @@ class={selected_lab == l.lab ? "active" : "hover"} > <th>{i + 1}</th> - <th>{l.lab?.course}</th> - <th>{l.lab?.section}</th> + <th>{l.lab?.course} - {l.lab?.section}</th> <th>{l.lab?.time}</th> <th>{l.lab?.location}</th> <th>{displayFaculty(l.lab)}</th> |
