-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(search): Add Search Functionality to Resource List in Insights Page #788
Conversation
- Update Makefile to use full path for swag and swagger commands - Add 'keyword' query parameter to OpenAPI specification files - Modify search handler to support keyword filtering in SQL queries - Enable keyword search in UI search input component
Your movement is fast, let me take a look at these modifications. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are there any specific scenarios or edge cases that we should test for the keyword search functionality?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the updated documentation compliant with any particular markdown rendering requirements or guidelines?
Yes, the doc is generated by |
The only other character that could affect it is spaces, so I can add a line to remove spaces. I don't have any other ideas. Initially, I thought about preventing SQL injection, but the input query is already an SQL statement. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
What type of PR is this?
/kind feature
/kind chore
What this PR does / why we need it:
Which issue(s) this PR fixes:
#679