Open TheJaredWilcurt opened 2 years ago
I localized the updateFilters
method as a potential source of an issue. Inside the method, there's a 400ms delay from setTimeout
, which seems to be causing a race condition. Removing setTimeout
seems to be fixing the issue but there must have been a reason for the usage so I'm not sure if simply removing it, won't cause more issues.
Any input from contributors?
Issue Type
Specs
Expected Behavior
The text you type into the column filter remains as typed
Actual Behavior
Some characters get overwritten as you type
Steps to Reproduce the Problem
john
NOTE: Backspace is not being typed, the
h
is removed by VGT. Or more accurately "joh" is replaced with "jo" (after the first search finishes) but the user is still typing (so then
is appended, makingjon
). This can be any character in the string that is being typed, or multiple characters.