Reputation: 12433
I need to hide some errors (that contain "props.style"):
that are contaminating my developer console. I figure hiding them by the word will be best. I have tried adding a few regex patterns on SO such as this one, to the filter, but they seem to hide all errors. How do I hide just the errors with "props.style" in them?
Upvotes: 7
Views: 1632
Reputation: 25897
Use the negative filter: -props.style
Regular expressions also work: -/props\.style/
Upvotes: 12