chore: pnpm format
📊 Benchmark the Runtime / benchmark (pull_request) Successful in 1m39s
🚀 Lint & Test & Deploy / quality (pull_request) Successful in 2m21s
🚀 Lint & Test & Deploy / test-unit (pull_request) Successful in 48s
🚀 Lint & Test & Deploy / test-e2e (pull_request) Successful in 1m51s
🚀 Lint & Test & Deploy / deploy (pull_request) Successful in 2m1s

This commit is contained in:
2026-05-05 21:55:32 +02:00
parent 3e32ca419a
commit 63d5b8079d
2 changed files with 4 additions and 4 deletions
@@ -41,9 +41,7 @@
{/each}
<span class="i-[tabler--arrow-right]"></span>
<button
class="bg-layer-2 opacity-100 cursor-pointer rounded-sm p-1 px-2"
>
<button class="bg-layer-2 opacity-100 cursor-pointer rounded-sm p-1 px-2">
{getGroupName(graph.currentGroupId!)}
</button>
</div>
@@ -876,7 +876,9 @@ export class GraphManager extends EventEmitter<{
const edge = groupOutputs.values().next().value!;
const outputType = edge[0].state.type?.outputs?.[edge[1]] || '*';
outputs.push({
label: outputType === '*' ? 'Output' : outputType.charAt(0).toUpperCase() + outputType.slice(1),
label: outputType === '*'
? 'Output'
: outputType.charAt(0).toUpperCase() + outputType.slice(1),
type: edge[2].state.type?.inputs?.[edge[3]].type || '*'
});
}