Skip to content

Commit

Permalink
fix(projects): wrap project topic in card title
Browse files Browse the repository at this point in the history
  • Loading branch information
ofr1tz committed Apr 23, 2024
1 parent 5890632 commit 41bf9fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/ProjectsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export default defineComponent({
:src="project.image"
@error="() => (project.image = fallbackImage)"
/>
<v-card-title>{{ project.projectTopic }}</v-card-title>
<v-card-title class="text-wrap">{{ project.projectTopic }}</v-card-title>
<v-card-text>
<v-icon small>mdi-pound</v-icon>
{{ project.projectNumber || $t('projectsView.unknown') }}
Expand Down

0 comments on commit 41bf9fb

Please sign in to comment.