mirror of
https://github.com/romancm/gamebrary
synced 2024-11-23 19:53:14 +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
|
||||
rounded
|
||||
size="38"
|
||||
:src="user.photoURL ? user.photoURL : null"
|
||||
:src="user && user.photoURL ? user.photoURL : null"
|
||||
/>
|
||||
|
||||
<span v-if="profile.userName">
|
||||
|
|
Loading…
Reference in a new issue