mirror of
https://github.com/romancm/gamebrary
synced 2024-11-24 04:03:06 +00:00
null check to fix console error
This commit is contained in:
parent
fffa760253
commit
acafaf9d1a
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@
|
||||||
<b-avatar
|
<b-avatar
|
||||||
rounded
|
rounded
|
||||||
size="38"
|
size="38"
|
||||||
:src="user.photoURL ? user.photoURL : null"
|
:src="user && user.photoURL ? user.photoURL : null"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<span v-if="profile.userName">
|
<span v-if="profile.userName">
|
||||||
|
|
Loading…
Reference in a new issue