Skip to content

Commit 94739a7

Browse files
authored
fix: compare page package desc truncate invalid (#1312)
1 parent 3c0223b commit 94739a7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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)