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
When editing the filter in grid_benchmark_jobs.php, you should be able to press the CR key and have the filter trigger. There is a function called stopRKey() that is used by RTM that is defective. It's only supposed to block the CR key from triggering on keypress when the "filter" is empty. This was due to a bug in browsers that when editing the filter form value, if you back-spaced when the string was empty, it could trigger a submit. However, this is coded incorrectly.
Step To Reproduce
Steps to reproduce the behavior:
Edit the benchmark job results
Type in some value into the filter
Press Enter
Note that the form callback does not trigger
Expected behavior
If the filter is null or not null and you press enter, the form should submit. If you press the backspace, and the filter is null, the submit should not trigger.
The text was updated successfully, but these errors were encountered:
Describe the bug
When editing the filter in grid_benchmark_jobs.php, you should be able to press the CR key and have the filter trigger. There is a function called stopRKey() that is used by RTM that is defective. It's only supposed to block the CR key from triggering on keypress when the "filter" is empty. This was due to a bug in browsers that when editing the filter form value, if you back-spaced when the string was empty, it could trigger a submit. However, this is coded incorrectly.
Step To Reproduce
Steps to reproduce the behavior:
Expected behavior
If the filter is null or not null and you press enter, the form should submit. If you press the backspace, and the filter is null, the submit should not trigger.
The text was updated successfully, but these errors were encountered: