-
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
[RAC] [TGrid] Field browser implemented in EuiDataGrid toolbar #105207
Changes from all commits
ab88265
5a1f08b
2a0e52b
9102d1d
7f43100
caf2b0a
ebd472a
8de5d13
9c02b48
6509b62
9262c50
11dc88b
90064dc
0ee2c10
1166a22
c99842d
0594c4e
300a245
b98ee1a
834ffa8
68beccc
0185881
3bcc660
6726db7
38d5a79
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,11 +181,6 @@ export const getBreadcrumbsForRoute = ( | |
} | ||
|
||
if (isAdminRoutes(spyState) && object.navTabs) { | ||
const tempNav: SearchNavTab = { urlKey: 'administration', isDetailPage: false }; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you really wanted to delete that There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, sorry I forgot to explain this change here. It is an unrelated cleaning from this @stephmilovic comment: #103927 (comment) |
||
let urlStateKeys = [getOr(tempNav, spyState.pageName, object.navTabs)]; | ||
if (spyState.tabName != null) { | ||
urlStateKeys = [...urlStateKeys, getOr(tempNav, spyState.tabName, object.navTabs)]; | ||
} | ||
return [siemRootBreadcrumb, ...getAdminBreadcrumbs(spyState)]; | ||
} | ||
|
||
|
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.
I don't like how big this is getting, but between #105941 and #105207 (comment) I understand this is just some debt we're taking on temporarily.
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.
Exactly, thanks