mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix(editor): Do not show actions dialog for actionless triggers when selected via keyboard (#4911)
This commit is contained in:
@@ -431,7 +431,8 @@ function selected(element: INodeCreateElement) {
|
||||
}
|
||||
|
||||
function onNodeSelected(element: NodeCreateElement) {
|
||||
if(props.withActionsGetter && props.withActionsGetter(element) === true) {
|
||||
const hasActions = (element.properties.nodeType?.actions?.length || 0) > 0;
|
||||
if(props.withActionsGetter && props.withActionsGetter(element) === true && hasActions) {
|
||||
emit('actionsOpen', element.properties.nodeType);
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user