-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Content Management] Cross Type Search - paginate and tags filter #154819
Conversation
Pinging @elastic/appex-sharedux (Team:SharedUX) |
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! Great job. I left a few comments to use constant/util reusable function.
💛 Build succeeded, but was flaky
Failed CI StepsMetrics [docs]Unknown metric groupsESLint disabled line counts
Total ESLint disabled count
History
To update your PR or re-run it, just comment with: |
@@ -8,6 +8,7 @@ | |||
import { schema } from '@kbn/config-schema'; | |||
import type { IRouter } from '@kbn/core/server'; | |||
|
|||
import { LISTING_LIMIT_SETTING, PER_PAGE_SETTING } from '@kbn/saved-objects-finder-plugin/common'; |
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.
This is causing trouble.
@@ -14,6 +14,7 @@ | |||
"@kbn/object-versioning", | |||
"@kbn/core-saved-objects-api-server-mocks", | |||
"@kbn/core-saved-objects-api-server", | |||
"@kbn/saved-objects-finder-plugin", |
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.
Unfortunately this causes problems. content_management
dependencies need to be minimized.
@kbn/saved-objects-finder-plugin
depends upon @kbn/saved-objects-management-plugin
depends upon the data
and data-view
plugins which means its a circular dependency if they then try to implement the CM api.
I guess there are other places in that dependency chain where changes could be made but this seems like a simple place.
…ct_finder (#155013) ## Summary Follow up #154819, @mattkime pointed out a problem that cm can't depend on saved_object_finder https://github.com/elastic/kibana/pull/154819/files#diff-635bc20df585b656afebba3ebf338ff997e735df933f704cc5f253a74b3503ddR17
Summary
Follow up to #154464
Partially resolve #152224 - implement pagination and tags filtering