We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c84ad82 commit 1a62537Copy full SHA for 1a62537
frontend/components/Layout/Images/UserImage.vue
@@ -45,8 +45,8 @@ export default Vue.extend({
45
computed: {
46
userImage: {
47
get(): string | undefined {
48
- if (this.user?.Id && this.user?.PrimaryImageTag) {
49
- return `${this.$axios.defaults.baseURL}/Users/${this.user.Id}/Images/Primary/?tag=${this.user.PrimaryImageTag}&quality=${this.quality}`;
+ if (this.user?.Id) {
+ return `${this.$axios.defaults.baseURL}/Users/${this.user.Id}/Images/Primary/?quality=${this.quality}`;
50
}
51
52
},
0 commit comments