You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem:
The keyboard shortcut Ctrl+Shift+s can be used to save the currently opened workflow. While documenting tickets I used the Windows Snipping-Tool-Shortcut Ctrl+Win+s and my workfows were saved.
The next week while checking our repository, git status showed different changes in workflows I did not mean to change.
Possible solution:
In "zeta\base\services\keypress-distribution.service.ts" the event.metaKey is probably the culprit:
ctrl: event.ctrlKey || event.metaKey,
In newer browser versions the event.metaKey (which is used for checking if the Mac Command key is pressed), returns also true for the Windows key.
Maybe a check for the OS could be implemented?
The text was updated successfully, but these errors were encountered:
Problem:
The keyboard shortcut Ctrl+Shift+s can be used to save the currently opened workflow. While documenting tickets I used the Windows Snipping-Tool-Shortcut Ctrl+Win+s and my workfows were saved.
The next week while checking our repository, git status showed different changes in workflows I did not mean to change.
Possible solution:
In "zeta\base\services\keypress-distribution.service.ts" the event.metaKey is probably the culprit:
ctrl: event.ctrlKey || event.metaKey,
In newer browser versions the event.metaKey (which is used for checking if the Mac Command key is pressed), returns also true for the Windows key.
Maybe a check for the OS could be implemented?
The text was updated successfully, but these errors were encountered: