fix(editor): Fix opening of chat window when executing a child node (#8789)

Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
oleg
2024-03-21 09:23:15 +01:00
committed by GitHub
parent 5e84c2ab89
commit 5f53d76e39
11 changed files with 97 additions and 25 deletions

View File

@@ -28,7 +28,11 @@ export type PinDataSource =
| 'context-menu'
| 'keyboard-shortcut';
export type UnpinDataSource = 'unpin-and-execute-modal' | 'context-menu' | 'keyboard-shortcut';
export type UnpinDataSource =
| 'unpin-and-execute-modal'
| 'context-menu'
| 'keyboard-shortcut'
| 'unpin-and-send-chat-message-modal';
export function usePinnedData(
node: MaybeRef<INodeUi | null>,