fix: dont crash when no groups exist
📊 Benchmark the Runtime / benchmark (push) Successful in 1m24s
🚀 Lint & Test & Deploy / quality (push) Successful in 2m24s
🚀 Lint & Test & Deploy / test-unit (push) Successful in 48s
🚀 Lint & Test & Deploy / test-e2e (push) Successful in 1m59s
🚀 Lint & Test & Deploy / deploy (push) Has been cancelled

This commit is contained in:
2026-05-05 22:52:24 +02:00
parent 2d9eb0c087
commit a00db400bb
@@ -486,7 +486,7 @@ export class GraphManager extends EventEmitter<{
'groupId': {
type: 'select',
label: '',
value: this.groups[0].id,
value: this.groups?.[0]?.id,
internal: true,
options: this.groups.map((g) => ({
value: g.id,