We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27ae371 commit 7b5f10fCopy full SHA for 7b5f10f
.changeset/rotten-walls-add.md
@@ -0,0 +1,5 @@
1
+---
2
+"@breadboard-ai/shared-ui": patch
3
4
+
5
+Trigger edit flow on dblclick of node header
packages/shared-ui/src/elements/step-editor/graph-node.ts
@@ -566,6 +566,11 @@ export class GraphNode extends Box implements DragConnectorReceiver {
566
@click=${(evt: Event) => {
567
evt.stopImmediatePropagation();
568
}}
569
+ @dblclick=${() => {
570
+ this.dispatchEvent(
571
+ new NodeConfigurationRequestEvent(this.nodeId, this.worldBounds)
572
+ );
573
+ }}
574
@pointerdown=${(evt: PointerEvent) => {
575
if (!(evt.target instanceof HTMLElement)) {
576
return;
0 commit comments