Skip to content

Commit ad3d55e

Browse files
committed
fix: compare page pacakge desc truncate invalid
1 parent 3ea47eb commit ad3d55e

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

app/components/Compare/PackageSelector.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,10 @@ function handleFocus() {
204204
@click="addPackage(result.name)"
205205
>
206206
<span class="font-mono text-sm text-fg block">{{ result.name }}</span>
207-
<span v-if="result.description" class="text-xs text-fg-muted truncate mt-0.5">
207+
<span
208+
v-if="result.description"
209+
class="text-xs text-fg-muted truncate mt-0.5 w-full block"
210+
>
208211
{{ result.description }}
209212
</span>
210213
</ButtonBase>

0 commit comments

Comments
 (0)