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
I was confused on why a rule was giving a false positive, so I checked options_demo.js and found the actual rule was Index(.|\n)*modified instead of Index(.| )*modified, but the rules table was displaying the latter. There's an actual newline in the HTML, which gets rendered as a space. This should be rendered as '\n' instead.
The text was updated successfully, but these errors were encountered:
I was confused on why a rule was giving a false positive, so I checked
options_demo.js
and found the actual rule wasIndex(.|\n)*modified
instead ofIndex(.| )*modified
, but the rules table was displaying the latter. There's an actual newline in the HTML, which gets rendered as a space. This should be rendered as '\n' instead.The text was updated successfully, but these errors were encountered: