windmill-components 1.46.1 → 1.46.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -96,7 +96,7 @@ function flowModuleToNode(parentIds, id, title, host, onClickDetail, lang, edgeL
|
|
|
96
96
|
data: {
|
|
97
97
|
html: `
|
|
98
98
|
<div class="w-full flex justify-between items-center px-1">
|
|
99
|
-
<div class="${wrapperWidth} text-left ellipsize text-2xs">
|
|
99
|
+
<div class="${wrapperWidth} text-left ellipsize text-2xs truncate">
|
|
100
100
|
${title}
|
|
101
101
|
</div>
|
|
102
102
|
<div class="flex items-center">
|
|
@@ -129,7 +129,7 @@ function flowModuleToLoop(modules, startLabel, parent = undefined) {
|
|
|
129
129
|
const item = getConvertedFlowModule(module, loop.items);
|
|
130
130
|
item && loop.items.push(item);
|
|
131
131
|
});
|
|
132
|
-
loop.items.push(createVirtualNode(getParentIds(loop.items), '
|
|
132
|
+
loop.items.push(createVirtualNode(getParentIds(loop.items), "Collect iterations' results"));
|
|
133
133
|
return loop;
|
|
134
134
|
}
|
|
135
135
|
function flowModuleToBranch(branches, edgesLabel, parent = undefined) {
|
package/components/graph/util.js
CHANGED