Skip to content

Commit 625fd7e

Browse files
committed
wip
1 parent 17df482 commit 625fd7e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

resources/js/components/UserInfo.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ interface Props {
1111
const { user } = defineProps<Props>();
1212
const { getInitials } = useInitials();
1313
14-
// Compute whether we should show the avatar image
14+
// Compute whether we should show the avatar image...
1515
const showAvatar = computed(() => user.avatar && user.avatar !== '');
1616
</script>
1717

@@ -22,6 +22,7 @@ const showAvatar = computed(() => user.avatar && user.avatar !== '');
2222
{{ getInitials(user.name) }}
2323
</AvatarFallback>
2424
</Avatar>
25+
2526
<div class="grid flex-1 text-left text-sm leading-tight">
2627
<span class="truncate font-semibold">{{ user.name }}</span>
2728
<span class="truncate text-xs">{{ user.email }}</span>

0 commit comments

Comments
 (0)