Skip to content

Commit 18451e5

Browse files
committed
make source-course display conditional
1 parent b202137 commit 18451e5

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

packages/common-ui/src/components/StudySession.vue

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
<template>
22
<div v-if="sessionPrepared" class="StudySession">
33
<v-row align="center">
4-
<v-col>
5-
<h1 class="text-h3">
6-
{{ courseNames[courseID] }}:
7-
<v-progress-circular v-if="loading" color="primary" indeterminate size="32" width="4" />
8-
</h1>
9-
<v-spacer></v-spacer>
10-
</v-col>
4+
<h1 class="text-h3" v-if="courseNames[courseID]">{{ courseNames[courseID] }}:</h1>
5+
<v-spacer></v-spacer>
6+
<v-progress-circular v-if="loading" color="primary" indeterminate size="32" width="4" />
117
</v-row>
128

139
<br />

0 commit comments

Comments
 (0)