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
The original design was to match when the option contains the value provided. But this loose definition clearly now encounters an edge case where the values are '-1', '0', '1', '2', '3'..
Providing '1' as value would match with '-1' since '-1' contains '1'). Making this change may cause some existing user scripts to fail (assuming that the search is based on contains).
But is necessary change, otherwise, there is no way to click on the option with '1', as first spotted in this edge case - tebelorg/RPA-Python#71
The text was updated successfully, but these errors were encountered:
In tagui_header.js, the following line
has to be changed to the following
The original design was to match when the option contains the value provided. But this loose definition clearly now encounters an edge case where the values are '-1', '0', '1', '2', '3'..
Providing '1' as value would match with '-1' since '-1' contains '1'). Making this change may cause some existing user scripts to fail (assuming that the search is based on contains).
But is necessary change, otherwise, there is no way to click on the option with '1', as first spotted in this edge case - tebelorg/RPA-Python#71
The text was updated successfully, but these errors were encountered: