Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat(Avatar): Finished Avatar Crop&Upload #17

Open
wants to merge 9 commits into
base: dev
Choose a base branch
from
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"vee-validate": "^4.12.6",
"viewerjs": "^1.11.6",
"vue": "^3.4.21",
"vue-advanced-cropper": "^2.8.8",
"vue-i18n": "^9.10.2",
"vue-router": "^4.3.0",
"vuetify": "^3.5.13",
Expand Down
27 changes: 27 additions & 0 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion src/components/answer/AnswerCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<v-card-title>{{ answer.author.nickname }}</v-card-title>
<v-card-subtitle>{{ answer.author.intro }}</v-card-subtitle>
<template #prepend>
<user-avatar :avatar="answer.author.avatar" />
<user-avatar :avatar="answer.author.avatarId" />
</template>
</v-card-item>
<v-card-text class="text-body-1 font-weight-regular answer-body-text pb-1 px-3">
Expand Down
Loading