1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-11-10 02:35:33 +03:00

🐛 Fix bug that it does always move to beginning of line after

entering first character in expression input
This commit is contained in:
Jan Oberhauser 2019-08-02 16:53:02 +02:00
parent a0b7abed20
commit 72bd291efb

View File

@ -112,7 +112,7 @@ export default mixins(
AutoFormat.DEFAULTS = {
expression: {
trigger: /[\w\s]/,
trigger: /\B[\w\s]/,
find: /\{\{[^\s,;:!?}]+\}\}/i,
format: 'variable',
},