-
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
[Metrics UI] Refactor With* containers to hooks #59503
Changes from 21 commits
b1bdb90
9f60ea5
d5dcec1
c963028
3c82d0a
cb7f13f
fd1452a
c1a8713
b64a837
2b5c7ea
03a1e5f
1814b28
83297b2
11e9853
3f5d6e1
57eb9e2
c2d8345
178ae1a
049b767
f39feee
1fac263
d565f9b
d038e88
29572d1
00d24d9
1ba5834
128be61
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
*/ | ||
|
||
declare module 'rison-node' { | ||
export type RisonValue = null | boolean | number | string | RisonObject | RisonArray; | ||
export type RisonValue = undefined | null | boolean | number | string | RisonObject | RisonArray; | ||
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. ugh rison How was this wrong before, do you understand what happened? Or is this just rison-whack-a-mole :D 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. rison-whack-a-mole ... 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. OK, I feel like we've edited various versions of this file in various places in Kibana at least 4-5 times since I started, let's just keep whacking this mole for now! 🔨 🔨 🔨 |
||
|
||
// eslint-disable-next-line @typescript-eslint/no-empty-interface | ||
export interface RisonArray extends Array<RisonValue> {} | ||
|
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.
What's up with the changes in this file?
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 was a test specific hack that Spencer is going to be cleaning up.