I have an input inside a form with an On change workflow that updates an array variable.
The issue is that the saved value is always one character behind what I type.
Has anyone encountered this before, or is there a best practice to avoid this?
Right now the āonChangeā event fires every time you input a value, which is too fast and doesnāt give enough time for the change to be processed.
In my opinion you should use debounce on every input that triggers the āonChangeā event.
I havenāt had an issue with this. I could see it happening if you were looking at the inputs value rather then using the event.value. Have you had this issue before?