-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Lens] Fixes the syncing of other series color (#146785)
## Summary Closes #146655 It seems that there are cases that the series name is "__other__" and other cases that is "Other". This PR fixes the color syncing of Other series on a dashboard. <img width="1155" alt="image" src="https://user-images.githubusercontent.com/17003240/205063130-8d4aee0e-42a3-4502-a4ab-b2b3c0a38f59.png"> ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios Co-authored-by: Andrew Tate <[email protected]>
- Loading branch information
1 parent
aa34492
commit 156bfe4
Showing
3 changed files
with
57 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,7 +79,8 @@ export const getLayers = ( | |
syncColors, | ||
isDarkMode, | ||
formatter, | ||
col.format | ||
col, | ||
formatters | ||
), | ||
}, | ||
}; | ||
|