Skip to content

Commit 1638e35

Browse files
authored
fix: #413 text not wrapping in location names when in location page (#422)
1 parent 9be3e4e commit 1638e35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/pages/location/[id].vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@
142142
<div>
143143
<div v-if="location?.parent" class="breadcrumbs py-0 text-sm">
144144
<ul class="text-base-content/70">
145-
<li>
145+
<li class="text-wrap">
146146
<NuxtLink :to="`/location/${location.parent.id}`"> {{ location.parent.name }}</NuxtLink>
147147
</li>
148-
<li>{{ location.name }}</li>
148+
<li class="text-wrap">{{ location.name }}</li>
149149
</ul>
150150
</div>
151151
<h1 class="flex items-center gap-3 pb-1 text-2xl">

0 commit comments

Comments
 (0)