Skip to content

Commit 6eb9c87

Browse files
committed
fix: add truncation to query key in QueryListItem
1 parent 0ce4f1c commit 6eb9c87

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

client/app/components/QueryListItem.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defineProps<{
99

1010
<template>
1111
<div
12-
class="grid gap-2 px-2 text-secondary hover:n-bg-hover truncate"
12+
class="grid gap-2 px-2 text-secondary hover:n-bg-hover truncate max-w-full"
1313
:style="{
1414
'grid-template-columns': '1em 1fr auto auto auto',
1515
}"
@@ -23,7 +23,9 @@ defineProps<{
2323
'background-color': getBackgroundColor(item),
2424
}"
2525
/>
26-
<div>
26+
<div
27+
class="truncate"
28+
>
2729
{{ item.queryKey }}
2830
</div>
2931
<div class="text-right">

0 commit comments

Comments
 (0)