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
waiting for release label is assigned to issues that required code changes and those changes were merged to upstream, but not released yet. Once a release is made, maintainers go through all labeled issues, leave a comment about the new release, remove the label, and close the issue.
Our use case is to restrict table with some label, but also provide an option to append another query or search field from user input.
For example, we can match
_AUDIT_LOGINUID:* *
screenshot
But we can't set $query to
*
and match_AUDIT_LOGINUID:* $query
:screenshot
I believe this is due to escape characters in resulting expression:
expr:"_AUDIT_LOGINUID:* \"*\""
While this might be sufficient to provide a search field, it makes a wrong expression when the variable is empty:
expr:"_AUDIT_LOGINUID:* \"\""
It works when downgrading the plugin to 0.3.0:
screenshot
The resulting query with 0.3.0:
expr:"_AUDIT_LOGINUID:* *"
The resulting query with 0.3.0 and empty variable:
expr:"_AUDIT_LOGINUID:* "
The text was updated successfully, but these errors were encountered: