We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8618adc commit 13beebdCopy full SHA for 13beebd
libs/web-flow-executor/src/nodes/data-viewers/array.ts
@@ -5,8 +5,8 @@ function getStringForObject(object: Record<string, any>) {
5
let data = '';
6
for (const [key, value] of Object.entries(object)) {
7
data += `<div class="flex flex-row gap-2">
8
- <div class="flex-grow text-left font-bold">${key}</div>
9
- <div class="flex-grow text-right">${value}</div>
+ <div class="flex-grow text-left font-bold max-w-[200px] line-clamp-1 overflow-hidden text-ellipsis">${key}</div>
+ <div class="flex-grow text-left max-w-[200px] line-clamp-1 overflow-hidden text-ellipsis">${value}</div>
10
</div>`;
11
}
12
return data;
0 commit comments