-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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
fix(explore): make clicked dnd filters unique #16700
Conversation
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!
@@ -31,3 +31,7 @@ export function isDatasourcePanelDndItem( | |||
): item is DatasourcePanelDndItem { | |||
return item?.value && item?.type; | |||
} | |||
|
|||
export function isDndItemValue(item: any): item is DndItemValue { | |||
return item?.value && item?.type; |
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 that correct? DndItemValue
is ColumnMeta | Metric
Codecov Report
@@ Coverage Diff @@
## master #16700 +/- ##
=======================================
Coverage 76.93% 76.94%
=======================================
Files 1007 1007
Lines 54112 54116 +4
Branches 7346 7347 +1
=======================================
+ Hits 41633 41637 +4
Misses 12239 12239
Partials 240 240
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
dea4149
to
7d988fc
Compare
7d988fc
to
7e6e93a
Compare
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.
Looks great! 🙂
(cherry picked from commit 1d890f8)
(cherry picked from commit 1d890f8)
🏷 2021.34 |
SUMMARY
This applies the fix in #16632 to the DnD filter control.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION