Skip to content

Commit

Permalink
Merge branch 'master' into ADO-32-e2e-undo
Browse files Browse the repository at this point in the history
* master:
  fix(editor): Do not show actions dialog for actionless triggers when selected via keyboard (#4911)
  📚 Update CHANGELOG.md and main package.json to 0.207.1
  fix: Update pnpm-lock to fix build (#4910)
  • Loading branch information
MiloradFilipovic committed Dec 14, 2022
2 parents b3adb0f + 74100d3 commit 989fa5e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [0.207.1](https://github.com/n8n-io/n8n/compare/[email protected]@0.207.1) (2022-12-13)


### Bug Fixes

* **editor:** Fix undo on Windows and Linux ([#4898](https://github.com/n8n-io/n8n/issues/4898)) ([3fc2d7c](https://github.com/n8n-io/n8n/commit/3fc2d7cc5af54f826a8f0c27cb7860448f92bb77))
* **editor:** Schema view render empty data ([#4902](https://github.com/n8n-io/n8n/issues/4902)) ([0b6d470](https://github.com/n8n-io/n8n/commit/0b6d47086a27117ceb0a1da107e5fcfbe11e0cd4))
* Ensure parent directory exists before copying over the icons to generated static directory ([#4865](https://github.com/n8n-io/n8n/issues/4865)) ([91e9a88](https://github.com/n8n-io/n8n/commit/91e9a88e3a83530e1dce2e72b8796da24775dcf2))



# [0.207.0](https://github.com/n8n-io/n8n/compare/[email protected]@0.207.0) (2022-12-12)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "n8n",
"version": "0.207.0",
"version": "0.207.1",
"private": true,
"homepage": "https://n8n.io",
"engines": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 989fa5e

Please sign in to comment.