Skip to content

Commit

Permalink
add user id
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevie-Ray committed Aug 21, 2023
1 parent af55b35 commit 8530467
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 24 deletions.
48 changes: 24 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions src/pages/account/AccountProfilePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,16 @@ useHead({
<v-row>
<v-col cols="12">
<v-list>
<v-list-item v-if="user && user.id">
<template #prepend>
<v-icon>mdi-identifier</v-icon>
</template>
<v-list-item-title>
{{ user.id }}
</v-list-item-title>
</v-list-item>
<v-list-item v-if="user && user.displayName">
<template #prepend>
<v-icon>mdi-account</v-icon>
Expand Down

0 comments on commit 8530467

Please sign in to comment.