Skip to content

Commit defd0ab

Browse files
authored
Merge pull request #2860 from uw-it-aca/qa
Qa
2 parents b36154d + 6d40a44 commit defd0ab

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

myuw_vue/components/home/summaries.vue

+6-6
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@
4747
</span>
4848
</a>
4949
</div>
50-
<div v-if="isHfsReady && isLibraryReady" class="col-md-10">
50+
<div v-if="isHfsReady || isLibraryReady" class="col-md-10">
5151
<div class="row float-md-end" style="padding: 0 10px;">
5252
<a
53-
v-if="hfs.student_husky_card"
53+
v-if="hfs && hfs.student_husky_card"
5454
v-inner="'MyUW Accounts page - Student Husky card'"
5555
class="d-inline-block col px-3 py-1 ms-1
5656
fw-light text-dark text-nowrap"
@@ -68,7 +68,7 @@
6868
</span>
6969
</a>
7070
<a
71-
v-if="hfs.resident_dining"
71+
v-if="hfs && hfs.resident_dining"
7272
v-inner="'MyUW Accounts page - Resident Dining'"
7373
class="d-inline-block col px-3 py-1 ms-1
7474
fw-light text-dark text-nowrap"
@@ -87,7 +87,7 @@
8787
</a>
8888

8989
<a
90-
v-if="hfs.employee_husky_card"
90+
v-if="hfs && hfs.employee_husky_card"
9191
v-inner="'MyUW Accounts page - Employee Husky card'"
9292
class="d-inline-block col px-3 py-1 ms-1
9393
fw-light text-dark text-nowrap"
@@ -105,7 +105,7 @@
105105
</span>
106106
</a>
107107
<a
108-
v-if="library.next_due"
108+
v-if="library && library.next_due"
109109
v-inner="'MyUW Accounts page - Library Account'"
110110
class="d-inline-block col px-3 py-1 ms-1
111111
fw-light text-dark text-nowrap"
@@ -123,7 +123,7 @@
123123
</span>
124124
</a>
125125
<a
126-
v-else-if="library.holds_ready"
126+
v-else-if="library && library.holds_ready"
127127
v-inner="'MyUW Accounts page - Library Account'"
128128
class="d-inline-block col px-3 py-1 ms-1
129129
fw-light text-dark text-nowrap"

0 commit comments

Comments
 (0)