Commit 6648d3d6f5c167d818610cc24b8d48b189b048c1
1 parent
59793b95a8
Exists in
master
and in
3 other branches
test progress card
Showing
1 changed file
with
5 additions
and
3 deletions
Show diff stats
src/pages/Report/progressCardReport.vue
... | ... | @@ -120,19 +120,21 @@ |
120 | 120 | <v-flex xs12 sm12 md12> |
121 | 121 | <v-layout> |
122 | 122 | <div class="school-logo"> |
123 | - <v-avatar> | |
124 | 123 | <img |
125 | 124 | :src="userData.schoolLogoUrl" |
126 | 125 | v-if="userData.schoolLogoUrl" |
126 | + width="40" | |
127 | + height="40" | |
127 | 128 | /> |
128 | 129 | <img |
129 | 130 | src="/static/schoolIcons/INTRACK_White.png" |
130 | 131 | v-else-if="!userData.schoolLogoUrl" |
132 | + width="40" | |
133 | + height="40" | |
131 | 134 | /> |
132 | - </v-avatar> | |
133 | 135 | </div> |
134 | 136 | <div class="school-name"> |
135 | - <h2>{{ userData.name }}</h2> | |
137 | + <h3>{{ userData.name }}</h3> | |
136 | 138 | </div> |
137 | 139 | </v-layout> |
138 | 140 | </v-flex> | ... | ... |