Skip to content

Commit

Permalink
fix(profile-view): hide group description
Browse files Browse the repository at this point in the history
  • Loading branch information
ofr1tz committed Nov 26, 2024
1 parent bac84c2 commit ecb9af5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/views/ProfileView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,6 @@ export default defineComponent({
<v-hover v-slot="{ isHovering, props }">
<v-card v-bind="props" :elevation="isHovering ? 3 : 1" width="350" tile>
<v-card-title>{{ selectedUserGroup.name }}</v-card-title>
<v-card-text>
<span v-if="selectedUserGroup">{{ selectedUserGroup.description }}</span>
</v-card-text>
<v-card-actions>
<v-btn
v-if="selectedUserGroup && getGroupStatsUrl(selectedUserGroup.groupId)"
Expand Down Expand Up @@ -295,7 +292,6 @@ export default defineComponent({
<v-hover v-slot="{ isHovering, props }">
<v-card v-bind="props" :elevation="isHovering ? 3 : 1" width="350" tile>
<v-card-title>{{ userGroup.name }}</v-card-title>
<v-card-text>{{ userGroup.description }}</v-card-text>
<v-card-actions>
<v-btn
v-if="getGroupStatsUrl(userGroup.groupId)"
Expand Down

0 comments on commit ecb9af5

Please sign in to comment.